Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
25 | public function __construct(string $key, array $path, string $pathDelimiter) |
||
26 | { |
||
27 | parent::__construct(); |
||
28 | $this->key = $key; |
||
29 | $this->path = $path; |
||
30 | $this->pathDelimiter = $pathDelimiter; |
||
31 | parent::__construct("Key '{$this->key}' is not found on path '{$this->getPathString()}'"); |
||
32 | } |
||
58 |