Total Complexity | 1 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | final class UnmappableRelationship extends RuntimeException implements CannotLoadTable |
||
16 | { |
||
17 | /** |
||
18 | * Produces an exception for when the relationship could not be mapped. |
||
19 | * |
||
20 | * @param Throwable $exception The exception that was encountered. |
||
21 | * @param string $property The property of the relationship. |
||
22 | * @param string $owner The label of the owning side. |
||
23 | * @param string $id The id of the owning side. |
||
24 | * @return CannotLoadTable The exception to throw. |
||
25 | */ |
||
26 | public static function encountered( |
||
41 |