Advertisement
Guest User

repositories.yaml

a guest
Nov 16th, 2018
589
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.49 KB | None | 0 0
  1. services:
  2.     _defaults:
  3.         autowire: true
  4.         autoconfigure: true
  5.         public: true
  6.  
  7.     App\Domain\Country\Infrastructure\Repository\CountryRepository:
  8.         factory: ["@doctrine.orm.default_entity_manager", getRepository]
  9.         arguments: [App\Domain\Country\Entity\Country]
  10.        
  11.     App\Domain\City\Infrastructure\Repository\CityRepository:
  12.         factory: ["@doctrine.orm.default_entity_manager", getRepository]
  13.         arguments: [App\Domain\City\Entity\City]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement