Passed
Push — master ( 3ea708...b1fd4c )
by Viacheslav
01:58
created
src/JsonValueReplace.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
             $path = $this->path;
46 46
             $pathItems = $this->pathItems;
47 47
             $actualKey = $key;
48
-            $this->path .= '/' . JsonPointer::escapeSegment($actualKey);
48
+            $this->path .= '/'.JsonPointer::escapeSegment($actualKey);
49 49
             $this->pathItems[] = $actualKey;
50 50
 
51 51
             $result[$key] = $this->process($originalValue);
@@ -54,6 +54,6 @@  discard block
 block discarded – undo
54 54
             $this->pathItems = $pathItems;
55 55
         }
56 56
 
57
-        return $data instanceof \stdClass ? (object)$result : $result;
57
+        return $data instanceof \stdClass ? (object) $result : $result;
58 58
     }
59 59
 }
60 60
\ No newline at end of file
Please login to merge, or discard this patch.