1 | <?php |
||
10 | class GuestMiddleware implements MiddlewareInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var RouterInterface |
||
14 | */ |
||
15 | protected $router; |
||
16 | |||
17 | /** |
||
18 | * @var Sentinel |
||
19 | */ |
||
20 | protected $sentinel; |
||
21 | |||
22 | public function __construct(RouterInterface $router, Sentinel $sentinel) |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public function __invoke(Request $request, Response $response, callable $next) |
||
39 | } |
||
40 |