1 | <?php |
||
14 | class AuthenticationPlugin implements Plugin |
||
15 | { |
||
16 | /** |
||
17 | * @var Authentication An authentication system |
||
18 | */ |
||
19 | private $authentication; |
||
20 | |||
21 | /** |
||
22 | * @param Authentication $authentication |
||
23 | */ |
||
24 | 3 | public function __construct(Authentication $authentication) |
|
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | 1 | public function handleRequest(RequestInterface $request, callable $next, callable $first) |
|
38 | } |
||
39 |