Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
15 | 3 | public function __construct(array $path, $message = null, Throwable $previous = null) |
|
16 | { |
||
17 | 3 | if ($message === null) { |
|
18 | 1 | $template = 'Node at requested path `%s` doesn\'t exist'; |
|
19 | 1 | $message = sprintf($template, Paths::toString($path)); |
|
20 | } |
||
21 | 3 | parent::__construct($path, $message, $previous); |
|
22 | 3 | } |
|
24 |