suivi/src/Factory/ToolFactory.php

15 lines
230 B
PHP

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