Passed
Push — master ( 44b707...94925e )
by Viacheslav
03:07
created
src/JsonPointer.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,9 @@
 block discarded – undo
87 87
                         throw new Exception('Non-existent path item: ' . $key);
88 88
                     }
89 89
                 } else {
90
-                    if ($recursively && $ref === null) $ref = array();
90
+                    if ($recursively && $ref === null) {
91
+                        $ref = array();
92
+                    }
91 93
                     if ('-' === $key) {
92 94
                         $ref = &$ref[];
93 95
                     } else {
Please login to merge, or discard this patch.