suivi/src/Factory/BillVendorFactory.php

18 lines
318 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\BillVendor as Entity;
class BillVendorFactory implements FactoryInterface
{
public function create(string $label): Entity
{
$entity = new Entity();
$entity->setLabel($label);
return $entity;
}
}