Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
31 | 3 | public function __construct(callable $contextChecker, array $passMiddleware, array $failMiddleware = []) |
|
32 | { |
||
33 | 3 | $this->contextChecker = $contextChecker; |
|
34 | 3 | $this->passMiddleware = new MiddlewareRunner(...$passMiddleware); |
|
35 | 3 | $this->failMiddleware = new MiddlewareRunner(...$failMiddleware); |
|
36 | 3 | } |
|
37 | |||
55 |