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