Completed
Pull Request — master (#21)
by Sergey
10:05
created
Category
src/Helper/JsonHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
         }
127 127
 
128 128
         if (is_array($data)) {
129
-            return array_map(function ($data) use ($excludedKeys) {
129
+            return array_map(function($data) use ($excludedKeys) {
130 130
                 return $this->excludeKeys($data, $excludedKeys);
131 131
             }, $data);
132 132
         }
Please login to merge, or discard this patch.
src/JsonMatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
     {
96 96
         // get base path
97 97
         $basePath = $this->getPath($options);
98
-        $path = ltrim($basePath . '/' . $path, '/');
98
+        $path = ltrim($basePath.'/'.$path, '/');
99 99
         $pathExists = true;
100 100
         try {
101 101
             $this->jsonHelper->parse($this->subject, $path);
Please login to merge, or discard this patch.