@@ -126,7 +126,7 @@ |
||
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 | } |
@@ -33,7 +33,7 @@ |
||
33 | 33 | |
34 | 34 | public function includes($json, array $options = []) |
35 | 35 | { |
36 | - return $this->matcher->includes($json, $this->negativeMatch($options));; |
|
36 | + return $this->matcher->includes($json, $this->negativeMatch($options)); ; |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | private function negativeMatch(array $options = []) { |
@@ -106,7 +106,7 @@ |
||
106 | 106 | $pathExists = true; |
107 | 107 | try { |
108 | 108 | $this->jsonHelper->parse($this->subject, $path); |
109 | - } catch(MissingPathException $e){ |
|
109 | + } catch (MissingPathException $e) { |
|
110 | 110 | $pathExists = false; |
111 | 111 | |
112 | 112 | } |