Completed
Push — master ( 205892...e583f8 )
by Viacheslav
9s
created
src/JsonPointer.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,9 @@
 block discarded – undo
70 70
                         throw new Exception('Non-existent path');
71 71
                     }
72 72
                 } else {
73
-                    if ($recursively && $ref === null) $ref = array();
73
+                    if ($recursively && $ref === null) {
74
+                        $ref = array();
75
+                    }
74 76
                     if ('-' === $key) {
75 77
                         $ref = &$ref[];
76 78
                     } else {
Please login to merge, or discard this patch.