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