| 1 | <?php |
||
| 9 | class UserPermissionVoter implements PermissionVoterInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var UserPermissionsReadRepositoryInterface |
||
| 13 | */ |
||
| 14 | private $userPermissionsReadRepository; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param UserPermissionsReadRepositoryInterface $userPermissionsReadRepository |
||
| 18 | */ |
||
| 19 | public function __construct( |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @inheritdoc |
||
| 27 | */ |
||
| 28 | public function isAllowed( |
||
| 45 | } |
||
| 46 |