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
337B

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