suivi/src/Factory/TeamContactFactory.php

15 lines
244 B
PHP
Raw Normal View History

2022-06-26 19:08:40 +02:00
<?php
namespace App\Factory;
use App\Core\Factory\FactoryInterface;
use App\Entity\TeamContact as Entity;
class TeamContactFactory implements FactoryInterface
{
public function create(): Entity
{
return new Entity();
}
}