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