suivi/src/Factory/BillFactory.php

15 lines
230 B
PHP
Raw Normal View History

2023-04-08 17:47:43 +02:00
<?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();
}
}