@@ -50,7 +50,7 @@ |
||
50 | 50 | * |
51 | 51 | * @return bool true if the segment was push, false otherwise |
52 | 52 | */ |
53 | - public function pushSegment($segmentName, ResourceSetWrapper &$resourceSetWrapper) |
|
53 | + public function pushSegment($segmentName, ResourceSetWrapper & $resourceSetWrapper) |
|
54 | 54 | { |
55 | 55 | if (!is_string($segmentName)) { |
56 | 56 | throw new InvalidOperationException('segmentName must be a string'); |
@@ -203,7 +203,7 @@ |
||
203 | 203 | */ |
204 | 204 | public static function tryParseKeysFromKeyPredicate( |
205 | 205 | $keyPredicate, |
206 | - KeyDescriptor &$keyDescriptor = null |
|
206 | + KeyDescriptor & $keyDescriptor = null |
|
207 | 207 | ) { |
208 | 208 | return self::tryParseKeysFromRawKeyPredicate( |
209 | 209 | $keyPredicate, |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | */ |
14 | 14 | public static function resourcePropertyInvalidKindParameter($argumentName) |
15 | 15 | { |
16 | - return 'The argument \''.$argumentName.'\' is not a valid ResourcePropertyKind enum value or' |
|
16 | + return 'The argument \'' . $argumentName . '\' is not a valid ResourcePropertyKind enum value or' |
|
17 | 17 | .' valid combination of ResourcePropertyKind enum values'; |
18 | 18 | } |
19 | 19 | |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public static function resourcePropertyPropertyKindAndResourceTypeKindMismatch($resourcePropertyKindArgName, $resourceTypeArgName) |
29 | 29 | { |
30 | - return 'The \''.$resourcePropertyKindArgName.'\' parameter does not match with the type of the resource' |
|
31 | - .' type in parameter \''.$resourceTypeArgName.'\''; |
|
30 | + return 'The \'' . $resourcePropertyKindArgName . '\' parameter does not match with the type of the resource' |
|
31 | + .' type in parameter \'' . $resourceTypeArgName . '\''; |
|
32 | 32 | } |
33 | 33 | } |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | */ |
25 | 25 | public static function queryProcessorNoQueryOptionsApplicable() |
26 | 26 | { |
27 | - return 'Query options $select, $expand, $filter, $orderby, $inlinecount, $skip, $skiptoken and $top are not'. |
|
27 | + return 'Query options $select, $expand, $filter, $orderby, $inlinecount, $skip, $skiptoken and $top are not' . |
|
28 | 28 | ' supported by this request method or cannot be applied to the requested resource.'; |
29 | 29 | } |
30 | 30 | |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | */ |
109 | 109 | public static function queryProcessorIncorrectArgumentFormat($argName, $argValue) |
110 | 110 | { |
111 | - return 'Incorrect format for '.$argName.' argument \''.$argValue.'\''; |
|
111 | + return 'Incorrect format for ' . $argName . ' argument \'' . $argValue . '\''; |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | */ |
123 | 123 | public static function queryProcessorSkipTokenCannotBeAppliedForNonPagedResourceSet($resourceSetName) |
124 | 124 | { |
125 | - return '$skiptoken cannot be applied to the resource set \''.$resourceSetName |
|
125 | + return '$skiptoken cannot be applied to the resource set \'' . $resourceSetName |
|
126 | 126 | .'\', since paging is not enabled for this resource set'; |
127 | 127 | } |
128 | 128 | |
@@ -137,6 +137,6 @@ discard block |
||
137 | 137 | */ |
138 | 138 | public static function queryProcessorSelectOrExpandOptionNotApplicable($queryItem) |
139 | 139 | { |
140 | - return 'Query option '.$queryItem.' cannot be applied to the requested resource'; |
|
140 | + return 'Query option ' . $queryItem . ' cannot be applied to the requested resource'; |
|
141 | 141 | } |
142 | 142 | } |
@@ -87,7 +87,7 @@ |
||
87 | 87 | */ |
88 | 88 | public static function streamProviderWrapperMustNotSetContentTypeAndEtag($methodName) |
89 | 89 | { |
90 | - return 'The method '.$methodName.' must not set the HTTP response headers \'Content-Type\' and \'ETag\''; |
|
90 | + return 'The method ' . $methodName . ' must not set the HTTP response headers \'Content-Type\' and \'ETag\''; |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | /** |
@@ -16,8 +16,8 @@ discard block |
||
16 | 16 | */ |
17 | 17 | public static function requestVersionTooLow($requestedVersion, $requiredVersion) |
18 | 18 | { |
19 | - return 'Request version \''.$requestedVersion.'\' is not supported for the request payload. The only' |
|
20 | - .' supported version is \''.$requiredVersion.'\'.'; |
|
19 | + return 'Request version \'' . $requestedVersion . '\' is not supported for the request payload. The only' |
|
20 | + .' supported version is \'' . $requiredVersion . '\'.'; |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | /** |
@@ -31,8 +31,8 @@ discard block |
||
31 | 31 | */ |
32 | 32 | public static function requestVersionIsBiggerThanProtocolVersion($requiredVersion, $configuredVersion) |
33 | 33 | { |
34 | - return 'The response requires that version '.$requiredVersion.' of the protocol be used, but the' |
|
35 | - .' MaxProtocolVersion of the data service is set to '.$configuredVersion.'.'; |
|
34 | + return 'The response requires that version ' . $requiredVersion . ' of the protocol be used, but the' |
|
35 | + .' MaxProtocolVersion of the data service is set to ' . $configuredVersion . '.'; |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | /** |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | */ |
47 | 47 | public static function requestDescriptionInvalidVersionHeader($versionAsString, $headerName) |
48 | 48 | { |
49 | - return 'The header '.$headerName.' has malformed version value '.$versionAsString; |
|
49 | + return 'The header ' . $headerName . ' has malformed version value ' . $versionAsString; |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | */ |
62 | 62 | public static function requestDescriptionUnSupportedVersion($requestHeaderName, $requestedVersion, $availableVersions) |
63 | 63 | { |
64 | - return 'The version value '.$requestedVersion.' in the header '.$requestHeaderName.' is not' |
|
65 | - .' supported, available versions are '.$availableVersions; |
|
64 | + return 'The version value ' . $requestedVersion . ' in the header ' . $requestHeaderName . ' is not' |
|
65 | + .' supported, available versions are ' . $availableVersions; |
|
66 | 66 | } |
67 | 67 | } |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | * |
31 | 31 | * @return ODataFeed |
32 | 32 | */ |
33 | - public function writeTopLevelElements(QueryResult &$entryObjects); |
|
33 | + public function writeTopLevelElements(QueryResult & $entryObjects); |
|
34 | 34 | |
35 | 35 | /** |
36 | 36 | * Write top level url element. |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | * |
61 | 61 | * @return ODataPropertyContent |
62 | 62 | */ |
63 | - public function writeTopLevelComplexObject(QueryResult &$complexValue, $propertyName, ResourceType &$resourceType); |
|
63 | + public function writeTopLevelComplexObject(QueryResult & $complexValue, $propertyName, ResourceType & $resourceType); |
|
64 | 64 | |
65 | 65 | /** |
66 | 66 | * Write top level bag resource. |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | * @return ODataPropertyContent |
72 | 72 | * @internal param QueryResult $BagValue Results property contains the bag object to be written |
73 | 73 | */ |
74 | - public function writeTopLevelBagObject(QueryResult &$bagValue, $propertyName, ResourceType &$resourceType); |
|
74 | + public function writeTopLevelBagObject(QueryResult & $bagValue, $propertyName, ResourceType & $resourceType); |
|
75 | 75 | |
76 | 76 | /** |
77 | 77 | * Write top level primitive value. |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | * |
82 | 82 | * @return ODataPropertyContent |
83 | 83 | */ |
84 | - public function writeTopLevelPrimitive(QueryResult &$primitiveValue, ResourceProperty &$resourceProperty = null); |
|
84 | + public function writeTopLevelPrimitive(QueryResult & $primitiveValue, ResourceProperty & $resourceProperty = null); |
|
85 | 85 | |
86 | 86 | /** |
87 | 87 | * Gets reference to the request submitted by client. |
@@ -92,7 +92,7 @@ |
||
92 | 92 | */ |
93 | 93 | public static function httpProcessUtilityClosingQuoteNotFound($parameterName) |
94 | 94 | { |
95 | - return 'Value for MIME type parameter \'' . $parameterName . '\' is incorrect because the closing quote '. |
|
95 | + return 'Value for MIME type parameter \'' . $parameterName . '\' is incorrect because the closing quote ' . |
|
96 | 96 | 'character could not be found while the parameter value started with a quote character.'; |
97 | 97 | } |
98 | 98 |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | * |
295 | 295 | * @return bool true if a segment was pushed, false otherwise |
296 | 296 | */ |
297 | - protected function pushSegmentForNavigationProperty(ResourceProperty &$resourceProperty) |
|
297 | + protected function pushSegmentForNavigationProperty(ResourceProperty & $resourceProperty) |
|
298 | 298 | { |
299 | 299 | if (ResourceTypeKind::ENTITY == $resourceProperty->getTypeKind()) { |
300 | 300 | assert(!empty($this->getStack()->getSegmentNames()), 'Segment names should not be empty'); |
@@ -405,7 +405,7 @@ discard block |
||
405 | 405 | * |
406 | 406 | * @return bool true if the segment was push, false otherwise |
407 | 407 | */ |
408 | - private function pushSegment($segmentName, ResourceSetWrapper &$resourceSetWrapper) |
|
408 | + private function pushSegment($segmentName, ResourceSetWrapper & $resourceSetWrapper) |
|
409 | 409 | { |
410 | 410 | // Even though there is no expand in the request URI, still we need to push |
411 | 411 | // the segment information if we need to count |
@@ -640,7 +640,7 @@ discard block |
||
640 | 640 | &$parentPathSegments, |
641 | 641 | &$selectionPaths, |
642 | 642 | &$expansionPaths, |
643 | - ExpandedProjectionNode &$expandedProjectionNode, |
|
643 | + ExpandedProjectionNode & $expandedProjectionNode, |
|
644 | 644 | &$foundSelections, |
645 | 645 | &$foundExpansions |
646 | 646 | ) { |