1 | <?php |
||
10 | abstract class UserManagerAbstract implements UserManagerInterface |
||
11 | { |
||
12 | /** |
||
13 | * {@inheritdoc} |
||
14 | */ |
||
15 | public function hasPermissions(UserPermissionInterface $user, array $permissions) : bool |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public function hasPermission(UserPermissionInterface $user, $permission) : bool |
||
35 | |||
36 | protected function getUserPermissions(UserPermissionInterface $user) : array |
||
45 | } |