Passed
Push — master ( 5278ee...479027 )
by Dominik
02:09
created
src/Denormalizer/CollectionFieldDenormalizer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Chubbyphp\Deserialization\Denormalizer;
6 6
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
         $newChildObjects = [];
59 59
         foreach ($value as $i => $subValue) {
60
-            $subPath = $path . '[' . $i . ']';
60
+            $subPath = $path.'['.$i.']';
61 61
 
62 62
             if (!is_array($subValue)) {
63 63
                 throw DeserializerRuntimeException::createInvalidType($subPath, 'object');
Please login to merge, or discard this patch.