Conditions | 3 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
21 | public function setMiddleware($middleware) |
||
22 | { |
||
23 | if (!is_callable($middleware)) { |
||
24 | throw new InvalidArgumentException(sprintf( |
||
25 | 'Second parameter must be a callable, %s given.', |
||
26 | is_scalar($middleware) ? gettype($middleware) : get_class($middleware) |
||
27 | )); |
||
28 | } |
||
29 | $this->middleware = $middleware; |
||
30 | |||
31 | return $this; |
||
32 | } |
||
33 | |||
48 |