Total Complexity | 5 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class JwtMiddleware implements BeforeMiddlewareInterface |
||
14 | { |
||
15 | |||
16 | protected $ignorePath = []; |
||
17 | protected $jwtWrapper; |
||
18 | |||
19 | public function __construct(JwtWrapper $jwtWrapper, $ignorePath = []) |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * Undocumented function |
||
27 | * |
||
28 | * @param mixed $dispatcherStatus |
||
29 | * @param HttpResponse $response |
||
30 | * @param HttpRequest $request |
||
31 | * @return MiddlewareResult |
||
32 | */ |
||
33 | public function beforeProcess( |
||
54 |