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ů.

18 lines
318B

  1. <?php
  2. namespace Lc\PietroBundle\Factory\Subthematic;
  3. use App\Entity\Thematic\Subthematic;
  4. use Lc\PietroBundle\Model\Subthematic\SubthematicInterface;
  5. class SubthematicFactory
  6. {
  7. public function create(): SubthematicInterface
  8. {
  9. $subthematic = new Subthematic();
  10. return $subthematic;
  11. }
  12. }