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