Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public static function missingTheIdentityColumns( |
||
19 | string $theirLabel, |
||
20 | string $ourLabel |
||
21 | ): CannotMakeTableMapping { |
||
22 | return new CannotMakeMapping(withMessage( |
||
23 | 'Cannot make a mapping for the `%s` objects: ' . |
||
24 | 'Cannot resolve the identifying columns for the `%s` relation.', |
||
25 | $ourLabel, |
||
26 | $theirLabel |
||
27 | )); |
||
40 |