suivi/src/Factory/TeamContactFactory.php

15 lines
244 B
PHP

<?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();
}
}