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

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