| 1 | <?php |
||
| 25 | class DefaultServiceRepository implements EntityRepositoryInterface |
||
| 26 | { |
||
| 27 | use RepositoryTrait; |
||
| 28 | |||
| 29 | private $entityManager; |
||
| 30 | |||
| 31 | private $className; |
||
| 32 | |||
| 33 | public function __construct(EntityManagerInterface $entityManager, $className) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return EntityRepository |
||
| 41 | */ |
||
| 42 | private function getEntityRepository() |
||
| 46 | } |
||
| 47 |