Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public static function encountered( |
||
27 | Throwable $exception, |
||
28 | string $label, |
||
29 | array $input |
||
30 | ): CannotLoadTable { |
||
31 | return new UnmappableRow(withMessage( |
||
32 | 'Could not map the `%s` from `%s`: %s', |
||
33 | $label, |
||
34 | encodeAsJson($input), |
||
35 | $exception->getMessage() |
||
36 | ), 0, $exception); |
||
37 | } |
||
39 |