Total Complexity | 3 |
Total Lines | 22 |
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 | * @param string $msg |
||
16 | * @param string $path |
||
17 | * @param string $delimiter |
||
18 | * @param string[] $index |
||
19 | * @throws ResolveException |
||
20 | */ |
||
21 | 30 | public static function create( |
|
34 |