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.

SubthematicFactory.php 318B

1234567891011121314151617
  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. }