Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <?php
-
- namespace Lc\PietroBundle\Factory\Thematic;
-
- use App\Entity\Thematic\Thematic;
- use Lc\PietroBundle\Model\Thematic\ThematicInterface;
-
- class ThematicFactory
- {
- public function create(): ThematicInterface
- {
- $thematic = new Thematic();
-
- return $thematic;
- }
-
- }
|