1 | <?php |
||
4 | trait metadataResourceType |
||
5 | { |
||
6 | /** |
||
7 | * Format a message to show error when entity type of an entity set has a |
||
8 | * derived type with named stream property(ies). |
||
9 | * |
||
10 | * @param string $entitySetName The entity set name |
||
11 | * @param string $derivedTypeName The full name of the derived type |
||
12 | * |
||
13 | * @return string The formatted message |
||
14 | */ |
||
15 | public static function metadataResourceTypeSetNamedStreamsOnDerivedEntityTypesNotSupported($entitySetName, $derivedTypeName) |
||
19 | |||
20 | /** |
||
21 | * Format a message to show error when complex type having derived type |
||
22 | * is used as item type of a bag property. |
||
23 | * |
||
24 | * @param string $complexTypeName The name of the bag's complex type |
||
25 | * having derived type |
||
26 | * |
||
27 | * @return string The formatted message |
||
28 | */ |
||
29 | public static function metadataResourceTypeSetBagOfComplexTypeWithDerivedTypes($complexTypeName) |
||
33 | |||
34 | } |
||
35 |