suivi/src/Factory/DebriefingFactory.php

15 lines
242 B
PHP

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