Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
17 | 1 | public static function forMiddleware($middleware): InvalidMiddlewareException |
|
18 | { |
||
19 | 1 | $name = is_object($middleware) ? get_class($middleware) : gettype($middleware); |
|
20 | 1 | $message = sprintf( |
|
21 | 1 | 'Cannot add "%s" to middleware chain as it does not implement the Middleware interface.', |
|
22 | 1 | $name |
|
23 | ); |
||
24 | 1 | return new static($message); |
|
25 | } |
||
26 | } |
||
27 |