Completed
Push — master ( f650d4...cac1be )
by Alex
14s queued 12s
created
src/Serialisers/IronicSerialiser.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
         $targClass = $resourceType->getInstanceType()->getName();
190 190
         if (!($res instanceof $targClass)) {
191 191
             $msg = 'Object being serialised not instance of expected class, '
192
-                   . $targClass . ', is actually ' . $payloadClass;
192
+                    . $targClass . ', is actually ' . $payloadClass;
193 193
             throw new InvalidOperationException($msg);
194 194
         }
195 195
 
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
             if (!(ResourcePropertyKind::RESOURCESET_REFERENCE == $propKind
252 252
                   || ResourcePropertyKind::RESOURCE_REFERENCE == $propKind)) {
253 253
                 $msg = '$propKind != ResourcePropertyKind::RESOURCESET_REFERENCE &&'
254
-                       .' $propKind != ResourcePropertyKind::RESOURCE_REFERENCE';
254
+                        .' $propKind != ResourcePropertyKind::RESOURCE_REFERENCE';
255 255
                 throw new InvalidOperationException($msg);
256 256
             }
257 257
             $propTail = ResourcePropertyKind::RESOURCE_REFERENCE == $propKind ? 'entry' : 'feed';
@@ -877,10 +877,10 @@  discard block
 block discarded – undo
877 877
         /** @var string|null $queryParameterString */
878 878
         $queryParameterString = null;
879 879
         foreach ([ODataConstants::HTTPQUERY_STRING_FILTER,
880
-                     ODataConstants::HTTPQUERY_STRING_EXPAND,
881
-                     ODataConstants::HTTPQUERY_STRING_ORDERBY,
882
-                     ODataConstants::HTTPQUERY_STRING_INLINECOUNT,
883
-                     ODataConstants::HTTPQUERY_STRING_SELECT, ] as $queryOption) {
880
+                        ODataConstants::HTTPQUERY_STRING_EXPAND,
881
+                        ODataConstants::HTTPQUERY_STRING_ORDERBY,
882
+                        ODataConstants::HTTPQUERY_STRING_INLINECOUNT,
883
+                        ODataConstants::HTTPQUERY_STRING_SELECT, ] as $queryOption) {
884 884
             /** @var string|null $value */
885 885
             $value = $this->getService()->getHost()->getQueryStringItem($queryOption);
886 886
             if (null !== $value) {
@@ -1082,7 +1082,7 @@  discard block
 block discarded – undo
1082 1082
         $kVal = $typeKind->getValue();
1083 1083
         if (!(ResourceTypeKind::PRIMITIVE()->getValue() == $kVal || ResourceTypeKind::COMPLEX()->getValue() == $kVal)) {
1084 1084
             $msg = '$bagItemResourceTypeKind != ResourceTypeKind::PRIMITIVE'
1085
-                   .' && $bagItemResourceTypeKind != ResourceTypeKind::COMPLEX';
1085
+                    .' && $bagItemResourceTypeKind != ResourceTypeKind::COMPLEX';
1086 1086
             throw new InvalidOperationException($msg);
1087 1087
         }
1088 1088
         if (null == $result) {
Please login to merge, or discard this patch.