1 | <?php |
||
22 | final class AuthenticationMiddleware implements Middleware |
||
23 | { |
||
24 | private $username; |
||
25 | private $password; |
||
26 | |||
27 | /** @var Greeting|null */ |
||
28 | private $greeting; |
||
29 | |||
30 | 28 | public function __construct(string $username, string $password = '') |
|
35 | |||
36 | 28 | public function process(Request $request, Handler $handler) : Response |
|
54 | } |
||
55 |