| Total Complexity | 4 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 25% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class UserRepository extends Select\Repository implements IdentityRepositoryInterface |
||
| 14 | { |
||
| 15 | 1 | public function findAll(array $scope = [], array $orderBy = []): DataReaderInterface |
|
| 18 | } |
||
| 19 | |||
| 20 | private function findIdentityBy(string $field, string $value): ?IdentityInterface |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param string $id |
||
| 27 | * |
||
| 28 | * @return IdentityInterface|User|null |
||
| 29 | */ |
||
| 30 | public function findIdentity(string $id): ?IdentityInterface |
||
| 33 | } |
||
| 34 | |||
| 35 | public function findByLogin(string $login): ?IdentityInterface |
||
| 40 |