Conditions | 3 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function __construct(string $message = 'Invalid configuration detected.', ?string $namespace = null, ?string $key = null, ?Throwable $previous = null) |
||
18 | { |
||
19 | if ($namespace && $key) { |
||
20 | [$this->file, $this->line] = $this->findConfigLine($namespace, $key); |
||
21 | } |
||
22 | |||
23 | parent::__construct($message, previous: $previous); |
||
24 | } |
||
63 |