1 | <?php |
||
4 | trait metadataWriter |
||
5 | { |
||
6 | /** |
||
7 | * Message to show error when expecting entity or |
||
8 | * complex type, but a different type found. |
||
9 | * |
||
10 | * @return string The error message |
||
11 | */ |
||
12 | public static function metadataWriterExpectingEntityOrComplexResourceType() |
||
16 | |||
17 | /** |
||
18 | * Format a message to show error when no association set |
||
19 | * found for a navigation property. |
||
20 | * |
||
21 | * @param string $navigationPropertyName The name of the navigation property |
||
22 | * @param string $resourceTypeName The resource type on which the |
||
23 | * navigation property is defined |
||
24 | * |
||
25 | * @return string The formatted message |
||
26 | */ |
||
27 | public static function metadataWriterNoResourceAssociationSetForNavigationProperty($navigationPropertyName, $resourceTypeName) |
||
31 | } |
||
32 |