suivi/src/Factory/ThemeTypeFactory.php

15 lines
240 B
PHP

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