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