Completed
Branch 1.0-dev (8b5421)
by Sergey
03:06
created
src/Matcher/EqualsMatcher.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -13,6 +13,9 @@
 block discarded – undo
13 13
     private $ignoredKeys;
14 14
     private $atPath;
15 15
 
16
+    /**
17
+     * @param string $expectedJson
18
+     */
16 19
     public function __construct($expectedJson)
17 20
     {
18 21
         $this->expectedJson = $expectedJson;
Please login to merge, or discard this patch.
src/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.