Total Complexity | 4 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class ResolveException extends \RuntimeException |
||
11 | { |
||
12 | /** |
||
13 | * Create a ResolveException, filling out %s with invalid path. |
||
14 | * |
||
15 | * @noinspection PhpTooManyParametersInspection |
||
16 | * |
||
17 | * @param string $msg |
||
18 | * @param string $path |
||
19 | * @param string $delimiter |
||
20 | * @param string[] $index |
||
21 | * @param string $key |
||
22 | * @throws ResolveException |
||
23 | */ |
||
24 | 30 | public static function create( |
|
39 |