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