| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | final class UserRoleLoader implements IUserRoleLoader |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Loads the roles for the given user in the current domain from the database. |
||
| 19 | * |
||
| 20 | * This is mostly just a wrapper around the static method calls so this logic |
||
| 21 | * can be mocked out in unit tests. |
||
| 22 | */ |
||
| 23 | public function loadRolesForUser(User $user): array |
||
| 29 | } |
||
| 30 | } |