@@ -41,8 +41,8 @@  | 
                                                    ||
| 41 | 41 | * @return InternalSkipTokenInfo  | 
                                                        
| 42 | 42 | */  | 
                                                        
| 43 | 43 | public static function parseSkipTokenClause(  | 
                                                        
| 44 | - ResourceType &$resourceType,  | 
                                                        |
| 45 | - InternalOrderByInfo &$internalOrderByInfo,  | 
                                                        |
| 44 | + ResourceType & $resourceType,  | 
                                                        |
| 45 | + InternalOrderByInfo & $internalOrderByInfo,  | 
                                                        |
| 46 | 46 | $skipToken  | 
                                                        
| 47 | 47 |      ) { | 
                                                        
| 48 | 48 | $tokenValueDescriptor = null;  | 
                                                        
@@ -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,  | 
                                                        
@@ -25,7 +25,7 @@ discard block  | 
                                                    ||
| 25 | 25 | public static function queryProcessorNoQueryOptionsApplicable()  | 
                                                        
| 26 | 26 |      { | 
                                                        
| 27 | 27 | return 'Query options $select, $expand, $filter, $orderby, $inlinecount, $skip, $skiptoken and $top are not'.  | 
                                                        
| 28 | - ' supported by this request method or cannot be applied to the requested resource.';  | 
                                                        |
| 28 | + ' supported by this request method or cannot be applied to the requested resource.';  | 
                                                        |
| 29 | 29 | }  | 
                                                        
| 30 | 30 | |
| 31 | 31 | /**  | 
                                                        
@@ -123,7 +123,7 @@ discard block  | 
                                                    ||
| 123 | 123 | public static function queryProcessorSkipTokenCannotBeAppliedForNonPagedResourceSet($resourceSetName)  | 
                                                        
| 124 | 124 |      { | 
                                                        
| 125 | 125 | return '$skiptoken cannot be applied to the resource set \''.$resourceSetName  | 
                                                        
| 126 | - .'\', since paging is not enabled for this resource set';  | 
                                                        |
| 126 | + .'\', since paging is not enabled for this resource set';  | 
                                                        |
| 127 | 127 | }  | 
                                                        
| 128 | 128 | |
| 129 | 129 | /**  | 
                                                        
@@ -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 | }  | 
                                                        
@@ -13,6 +13,6 @@  | 
                                                    ||
| 13 | 13 | public static function resourceSetContainerMustBeAssociatedWithEntityType()  | 
                                                        
| 14 | 14 |      { | 
                                                        
| 15 | 15 | return 'The ResourceTypeKind property of a ResourceType instance associated with a ResourceSet'  | 
                                                        
| 16 | - .' must be equal to \'EntityType\'';  | 
                                                        |
| 16 | + .' must be equal to \'EntityType\'';  | 
                                                        |
| 17 | 17 | }  | 
                                                        
| 18 | 18 | }  | 
                                                        
@@ -52,7 +52,7 @@ discard block  | 
                                                    ||
| 52 | 52 | public static function streamProviderWrapperMustImplementIStreamProviderToSupportStreaming()  | 
                                                        
| 53 | 53 |      { | 
                                                        
| 54 | 54 | return 'To support streaming, the data service must implement IService::getStreamProviderX() to return'  | 
                                                        
| 55 | - .' an implementation of IStreamProvider or IStreamProvider2';  | 
                                                        |
| 55 | + .' an implementation of IStreamProvider or IStreamProvider2';  | 
                                                        |
| 56 | 56 | }  | 
                                                        
| 57 | 57 | |
| 58 | 58 | /**  | 
                                                        
@@ -63,7 +63,7 @@ discard block  | 
                                                    ||
| 63 | 63 | public static function streamProviderWrapperMaxProtocolVersionMustBeV3OrAboveToSupportNamedStreams()  | 
                                                        
| 64 | 64 |      { | 
                                                        
| 65 | 65 | return 'To support named streams, the MaxProtocolVersion of the data service must be set to'  | 
                                                        
| 66 | - .' ProtocolVersion.V3 or above.';  | 
                                                        |
| 66 | + .' ProtocolVersion.V3 or above.';  | 
                                                        |
| 67 | 67 | }  | 
                                                        
| 68 | 68 | |
| 69 | 69 | /**  | 
                                                        
@@ -75,7 +75,7 @@ discard block  | 
                                                    ||
| 75 | 75 | public static function streamProviderWrapperMustImplementStreamProvider2ToSupportNamedStreams()  | 
                                                        
| 76 | 76 |      { | 
                                                        
| 77 | 77 | return 'To support named streams, the data service must implement IServiceProvider.GetService() to'  | 
                                                        
| 78 | - .' return an implementation of IStreamProvider2 or the data source must implement IStreamProvider2.';  | 
                                                        |
| 78 | + .' return an implementation of IStreamProvider2 or the data source must implement IStreamProvider2.';  | 
                                                        |
| 79 | 79 | }  | 
                                                        
| 80 | 80 | |
| 81 | 81 | /**  | 
                                                        
@@ -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 | /**  | 
                                                        
@@ -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.  | 
                                                        
@@ -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 | /**  |