@@ -69,7 +69,7 @@ |
||
69 | 69 | $position |
70 | 70 | ) { |
71 | 71 | return 'No applicable function found for \'' . $functionName . '\' at position ' . $position . |
72 | - ' with the specified arguments. The functions considered are: ' . $protoTypes; |
|
72 | + ' with the specified arguments. The functions considered are: ' . $protoTypes; |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | /** |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | public static function commonNotValidPrimitiveEDMType($argumentName, $functionName) |
47 | 47 | { |
48 | 48 | return 'The argument \'' . $argumentName . '\' to ' . $functionName . ' is not a valid ' . |
49 | - 'EdmPrimitiveType Enum value.'; |
|
49 | + 'EdmPrimitiveType Enum value.'; |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | public static function failedToAccessProperty($propertyName, $parentObjectName) |
73 | 73 | { |
74 | 74 | return 'Data Service failed to access or initialize the property ' . $propertyName . |
75 | - ' of ' . $parentObjectName . '.'; |
|
75 | + ' of ' . $parentObjectName . '.'; |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
@@ -33,7 +33,7 @@ |
||
33 | 33 | $clause = $isSelect ? 'select' : 'expand'; |
34 | 34 | |
35 | 35 | return 'Error in the ' . $clause . ' clause. Type \'' . $resourceTypeName . '\' does not have ' . |
36 | - 'a property named \'' . $propertyName . '\'.'; |
|
36 | + 'a property named \'' . $propertyName . '\'.'; |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | /** |
@@ -25,7 +25,7 @@ |
||
25 | 25 | public static function queryProviderResultCountMissing($methodName, QueryType $queryType) |
26 | 26 | { |
27 | 27 | return 'The implementation of the method ' . $methodName . ' must return a QueryResult instance with ' . |
28 | - 'a count for queries of type ' . $queryType . '.'; |
|
28 | + 'a count for queries of type ' . $queryType . '.'; |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -132,6 +132,6 @@ |
||
132 | 132 | public static function expressionParserEntityCollectionNotAllowedInFilter($property, $parentProperty, $pos) |
133 | 133 | { |
134 | 134 | return 'The \'' . $property . '\' is an entity collection property of \'' . $parentProperty . |
135 | - '\' (position: ' . $pos . '), which cannot be used in $filter query option'; |
|
135 | + '\' (position: ' . $pos . '), which cannot be used in $filter query option'; |
|
136 | 136 | } |
137 | 137 | } |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | public static function keyDescriptorKeyCountNotMatching($segment, $expectedCount, $actualCount) |
18 | 18 | { |
19 | 19 | return 'The predicate in the segment \'' . $segment . '\' expect ' . $expectedCount . |
20 | - ' keys but ' . $actualCount . ' provided'; |
|
20 | + ' keys but ' . $actualCount . ' provided'; |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | /** |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | public static function keyDescriptorMissingKeys($segment, $expectedKeys) |
33 | 33 | { |
34 | 34 | return 'Missing keys in key predicate for the segment \'' . $segment . '\'. The key predicate ' . |
35 | - 'expects the keys \'' . $expectedKeys . '\''; |
|
35 | + 'expects the keys \'' . $expectedKeys . '\''; |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | /** |
@@ -44,7 +44,7 @@ |
||
44 | 44 | $expectedCount |
45 | 45 | ) { |
46 | 46 | return 'The number of keys \'' . $skipTokenValuesCount . '\' in skip token with value \'' . $skipToken . |
47 | - '\' did not match the number of ordering constraints \'' . $expectedCount . '\' for the resource type.'; |
|
47 | + '\' did not match the number of ordering constraints \'' . $expectedCount . '\' for the resource type.'; |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | /** |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | public static function orderByParserPropertyNotFound($resourceTypeName, $propertyName) |
51 | 51 | { |
52 | 52 | return 'Error in the \'orderby\' clause. Type ' . $resourceTypeName |
53 | - . ' does not have a property named \'' . $propertyName . '\'.'; |
|
53 | + . ' does not have a property named \'' . $propertyName . '\'.'; |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
@@ -179,6 +179,6 @@ discard block |
||
179 | 179 | public static function orderByParserFailedToAccessOrInitializeProperty($propertyName, $parentObjectName) |
180 | 180 | { |
181 | 181 | return 'OrderBy parser failed to access or initialize the property ' . $propertyName . |
182 | - ' of ' . $parentObjectName; |
|
182 | + ' of ' . $parentObjectName; |
|
183 | 183 | } |
184 | 184 | } |
@@ -349,7 +349,7 @@ |
||
349 | 349 | |
350 | 350 | ++$textIndex; |
351 | 351 | $parameterValue |
352 | - = self::readQuotedParameterValue($parameterName, $text, $textIndex); |
|
352 | + = self::readQuotedParameterValue($parameterName, $text, $textIndex); |
|
353 | 353 | $parameters[] = [$parameterName => $parameterValue]; |
354 | 354 | } |
355 | 355 |