Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public static function encountered( |
||
17 | Collection $theCollection, |
||
18 | Throwable $exception |
||
19 | ): ConversionFailed { |
||
20 | return new CouldNotConvertToJson(withMessage( |
||
21 | 'Could not convert the `%s` class to json: %s', |
||
22 | theClassOf($theCollection), |
||
23 | $exception->getMessage() |
||
24 | ), 0, $exception); |
||
25 | } |
||
27 |