fix constructor into acl aware repository

This commit is contained in:
2021-11-03 15:33:03 +01:00
parent 6911ace412
commit 35154f5ae1
2 changed files with 12 additions and 3 deletions

View File

@@ -321,7 +321,8 @@ class AuthorizationHelper implements AuthorizationHelperInterface
*/
public function findUsersReaching(string $role, $center, $scope = null, bool $onlyEnabled = true): array
{
return $this->userACLAwareRepository->findUsersByReachedACL($role, $center, $scope, $onlyEnabled);
return $this->userACLAwareRepository
->findUsersByReachedACL($role, $center, $scope, $onlyEnabled);
}
/**