| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class AccountRepository extends EntityRepository |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * function that return a list of all users that are not archived and different of current account |
||
| 12 | * @param User $current_account |
||
| 13 | * @param bool $archived |
||
| 14 | * @return array |
||
| 15 | */ |
||
| 16 | public function findAllUserArchived(User $current_account, bool $archived = false): array |
||
| 28 |