You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 line
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. }