Passed
Pull Request — master (#198)
by Alex
04:41
created
src/Serialisers/SerialiserLowLevelWriters.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
         $kVal     = $typeKind;
72 72
         if (!(ResourceTypeKind::PRIMITIVE() == $kVal || ResourceTypeKind::COMPLEX() == $kVal)) {
73 73
             $msg = '$bagItemResourceTypeKind != ResourceTypeKind::PRIMITIVE'
74
-                   . ' && $bagItemResourceTypeKind != ResourceTypeKind::COMPLEX';
74
+                    . ' && $bagItemResourceTypeKind != ResourceTypeKind::COMPLEX';
75 75
             throw new InvalidOperationException($msg);
76 76
         }
77 77
         if (null == $result) {
Please login to merge, or discard this patch.
src/Providers/MetadataProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@
 block discarded – undo
150 150
         $entityCount = count($entities);
151 151
         $expected    = 2 * $entityCount;
152 152
         if ($metaCount != $expected) {
153
-            $msg = 'Expected ' . $expected . ' items, actually got '. $metaCount;
153
+            $msg = 'Expected ' . $expected . ' items, actually got ' . $metaCount;
154 154
             throw new InvalidOperationException($msg);
155 155
         }
156 156
 
Please login to merge, or discard this patch.
src/Query/LaravelReadQueryUtilityTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         $values     = $skipToken->getOrderByKeysInToken();
41 41
         $numValues  = count($values);
42 42
         if ($numValues != count($segments)) {
43
-            $msg = 'Expected ' . count($segments) . ', got '. $numValues;
43
+            $msg = 'Expected ' . count($segments) . ', got ' . $numValues;
44 44
             throw new InvalidOperationException($msg);
45 45
         }
46 46
 
Please login to merge, or discard this patch.