Test Failed
Pull Request — master (#127)
by Christopher
03:39
created
src/POData/Common/Messages/expandProjectionParser.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
src/POData/Common/Messages/queryProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
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.