suivi/src/Factory/InterventionFactory.php

15 lines
246 B
PHP

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