| 1 | <?php |
||
| 14 | class AclResourceModule extends AbstractModule |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | private $resources; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var AclInterface |
||
| 23 | */ |
||
| 24 | private $acl; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | private $roleProvider; |
||
| 30 | |||
| 31 | 4 | public function __construct(AclInterface $acl, array $resources, string $roleProvider, AbstractModule $module = null) |
|
| 38 | |||
| 39 | 4 | protected function configure() |
|
| 50 | } |
||
| 51 |