We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34dd84d commit 3c34fd4Copy full SHA for 3c34fd4
src/Drivers/JsonDriver.php
@@ -28,7 +28,7 @@ public function extension(): string
28
29
public function match($expected, $actual)
30
{
31
- if(is_string($actual)){
+ if (is_string($actual)) {
32
$actual = json_decode($actual, true, 512, JSON_THROW_ON_ERROR);
33
}
34
$expected = json_decode($expected, true, 512, JSON_THROW_ON_ERROR);
0 commit comments