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 lines
297B

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