Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ThematicFactory.php 291B

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