deblan.io-murph/src/Factory/ProjectFactory.php
2022-04-05 12:05:06 +02:00

15 lines
236 B
PHP

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