Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
21 | final class AuthenticationMiddleware implements Middleware |
||
22 | { |
||
23 | private $username; |
||
24 | private $password; |
||
25 | private $greeting; |
||
26 | |||
27 | 22 | public function __construct(string $username, string $password = '') |
|
31 | 22 | } |
|
32 | |||
33 | 22 | public function process(Request $request, Handler $handler) : Response |
|
50 |