Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- <?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;
- }
-
- }
|