Skip to content

Commit

Permalink
add user/group resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
4rthem committed Jan 9, 2024
1 parent c8fd609 commit a8e2bea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
14 changes: 0 additions & 14 deletions Repository/AclUserRepositoryInterface.php

This file was deleted.

4 changes: 4 additions & 0 deletions Repository/UserRepositoryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@

namespace Alchemy\AclBundle\Repository;

use Alchemy\AclBundle\Model\AclUserInterface;

interface UserRepositoryInterface
{
public function getUsers(int $limit, int $offset = 0): array;

public function getUser(string $userId): ?array;

public function getAclGroupsId(AclUserInterface $user): array;
}

0 comments on commit a8e2bea

Please sign in to comment.