| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 11 | final class ORMEntityRepository extends ORMMatchableRepository |
||
| 12 | { |
||
| 13 | private EntityManagerInterface $em; |
||
| 14 | |||
| 15 | public function __construct(EntityManagerInterface $em) |
||
| 16 | { |
||
| 17 | $this->em = $em; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function getClassName(): string |
||
| 21 | { |
||
| 22 | return ORMEntity::class; |
||
| 23 | } |
||
| 24 | |||
| 25 | protected function em(): EntityManagerInterface |
||
| 28 | } |
||
| 29 | } |
||
| 30 |