1 | <?php |
||
4 | trait resourceProperty |
||
5 | { |
||
6 | /** |
||
7 | * Format a message to show error for invalid ResourcePropertyKind enum argument. |
||
8 | * |
||
9 | * @param string $argumentName The argument name |
||
10 | * |
||
11 | * @return string The formatted message |
||
12 | */ |
||
13 | public static function resourcePropertyInvalidKindParameter($argumentName) |
||
17 | /** |
||
18 | * Format a message to show error when ResourcePropertyKind and ResourceType's ResourceTypeKind mismatches. |
||
19 | * |
||
20 | * @param string $resourcePropertyKindArgName The ResourcePropertyKind argument name |
||
21 | * @param string $resourceTypeArgName The ResourceType argument name |
||
22 | * |
||
23 | * @return string The formatted message |
||
24 | */ |
||
25 | public static function resourcePropertyPropertyKindAndResourceTypeKindMismatch($resourcePropertyKindArgName, $resourceTypeArgName) |
||
29 | } |
||
30 |