suivi/src/Factory/BillFactory.php
2023-04-08 17:47:43 +02:00

15 lines
230 B
PHP

<?php
namespace App\Factory;
use App\Core\Factory\FactoryInterface;
use App\Entity\Bill as Entity;
class BillFactory implements FactoryInterface
{
public function create(): Entity
{
return new Entity();
}
}