| Total Complexity | 3 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | final class AuthenticationMiddleware |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var Authentication |
||
| 16 | */ |
||
| 17 | private $authentication; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param Authentication $authentication |
||
| 21 | */ |
||
| 22 | public function __construct(Authentication $authentication) |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param callable $handler |
||
| 29 | * |
||
| 30 | * @return callable |
||
| 31 | */ |
||
| 32 | public function __invoke(callable $handler) |
||
| 46 |