Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public static function constructFromThrowable(\Throwable $throwable, string $path): ConfigFileUnparsable |
||
15 | { |
||
16 | $message = 'Encountered error parsing config file "' . $path . '". Message was: "' . $throwable->getMessage() .'"'; |
||
17 | return new static($message, $throwable->getCode(), $throwable); |
||
18 | } |
||
19 | } |
||
20 |