Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

18 lines
273B

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