Passed
Pull Request — master (#127)
by Christopher
04:00
created
src/POData/Common/Messages/expressionParser.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,6 +132,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/POData/Common/Messages/keyDescriptor.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
src/POData/Common/Messages/httpProcessUtility.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
     public static function httpProcessUtilityClosingQuoteNotFound($parameterName)
94 94
     {
95 95
         return 'Value for MIME type parameter \'' . $parameterName . '\' is incorrect because the closing quote '.
96
-               'character could not be found while the parameter value started with a quote character.';
96
+                'character could not be found while the parameter value started with a quote character.';
97 97
     }
98 98
 
99 99
     /**
Please login to merge, or discard this patch.
src/POData/OperationContext/Web/IncomingRequest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@
 block discarded – undo
131 131
             }
132 132
 
133 133
             $this->rawUrl .= '://' .
134
-                             $_SERVER[HttpProcessUtility::headerToServerKey(ODataConstants::HTTPREQUEST_HEADER_HOST)];
134
+                                $_SERVER[HttpProcessUtility::headerToServerKey(ODataConstants::HTTPREQUEST_HEADER_HOST)];
135 135
             $this->rawUrl .= utf8_decode(urldecode($_SERVER[ODataConstants::HTTPREQUEST_URI]));
136 136
         }
137 137
 
Please login to merge, or discard this patch.
src/POData/Common/Messages/skipTokenParser.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     public static function skipTokenParserSkipTokenNotMatchingOrdering($skipTokenValuesCount, $skipToken, $expectedCount)
42 42
     {
43 43
         return 'The number of keys \'' . $skipTokenValuesCount . '\' in skip token with value \'' . $skipToken .
44
-               '\' did not match the number of ordering constraints \'' . $expectedCount . '\' for the resource type.';
44
+                '\' did not match the number of ordering constraints \'' . $expectedCount . '\' for the resource type.';
45 45
     }
46 46
 
47 47
     /**
Please login to merge, or discard this patch.