Passed
Pull Request — master (#216)
by Alex
04:24
created
src/Serialisers/SerialiserLowLevelWriters.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
         $kVal = $typeKind;
76 76
         if (!(ResourceTypeKind::PRIMITIVE() == $kVal || ResourceTypeKind::COMPLEX() == $kVal)) {
77 77
             $msg = '$bagItemResourceTypeKind != ResourceTypeKind::PRIMITIVE'
78
-                   .' && $bagItemResourceTypeKind != ResourceTypeKind::COMPLEX';
78
+                    .' && $bagItemResourceTypeKind != ResourceTypeKind::COMPLEX';
79 79
             throw new InvalidOperationException($msg);
80 80
         }
81 81
         if (null == $result) {
Please login to merge, or discard this patch.
src/Providers/MetadataBaseProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
     protected function checkClassMap($classMap)
59 59
     {
60 60
         if (!isset($classMap[__CLASS__])) {
61
-            throw new \Exception(sprintf('%s was not found in autoload class map, this usually indicates you '.
61
+            throw new \Exception(sprintf('%s was not found in autoload class map, this usually indicates you ' .
62 62
             'need to dump an opimized autoloader (`composer dump-autoload -o`)', __CLASS__));
63 63
         }
64 64
     }
Please login to merge, or discard this patch.
src/Serialisers/SerialiseDepWrapperTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -186,8 +186,8 @@
 block discarded – undo
186 186
      */
187 187
     protected function updateLightStack(int $newCount)
188 188
     {
189
-        $this->lightStack[$newCount - 1]['count']--;
190
-        if (0 == $this->lightStack[$newCount - 1]['count']) {
189
+        $this->lightStack[$newCount-1]['count']--;
190
+        if (0 == $this->lightStack[$newCount-1]['count']) {
191 191
             array_pop($this->lightStack);
192 192
         }
193 193
     }
Please login to merge, or discard this patch.