Conditions | 3 |
Paths | 3 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
17 | 73 | public static function ensureFormatterImplementsInterface(object $formatter): void |
|
18 | { |
||
19 | 73 | if (! $formatter instanceof Formatter) { |
|
20 | 2 | if (config('formatters.bindings_case') === 'camel') { |
|
21 | 1 | throw new ShouldNotUseCamelCaseException(); |
|
22 | } |
||
23 | |||
24 | 1 | throw new ShouldImplementInterfaceException(); |
|
25 | } |
||
46 |