1 | <?php |
||
11 | class AuthMiddleware extends Middleware |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $role; |
||
17 | |||
18 | /** |
||
19 | * Constructor. |
||
20 | * |
||
21 | * @param ContainerInterface $container |
||
22 | * @param string $role |
||
23 | */ |
||
24 | public function __construct(ContainerInterface $container, $role = null) |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function __invoke(Request $request, Response $response, callable $next) |
||
46 | } |
||
47 |