Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | 3 | public static function incorrectArrayDefinitionConstructorArguments(mixed $value): InvalidConfigException |
|
25 | { |
||
26 | 3 | return new InvalidConfigException( |
|
27 | 3 | sprintf( |
|
28 | 3 | 'Invalid definition: incorrect constructor arguments. Expected array, got %s.', |
|
29 | 3 | get_debug_type($value) |
|
30 | 3 | ) |
|
46 |