Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public static function encountered( |
||
27 | Throwable $exception, |
||
28 | string $property, |
||
29 | string $owner, |
||
30 | string $id |
||
31 | ): CannotLoadTable { |
||
32 | return new UnmappableRelationship(withMessage( |
||
33 | 'Could not map the `%s` in the `%s` `%s`: %s', |
||
34 | $property, |
||
35 | $owner, |
||
36 | $id, |
||
37 | $exception->getMessage() |
||
38 | ), 0, $exception); |
||
39 | } |
||
41 |