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