1 | <?php |
||
16 | /*final*/ class AuthenticationPlugin implements Plugin |
||
17 | { |
||
18 | /** |
||
19 | * @var Authentication An authentication system |
||
20 | */ |
||
21 | private $authentication; |
||
22 | |||
23 | /** |
||
24 | * @param Authentication $authentication |
||
25 | */ |
||
26 | 3 | public function __construct(Authentication $authentication) |
|
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | 1 | public function handleRequest(RequestInterface $request, callable $next, callable $first) |
|
40 | } |
||
41 |