Skip to content

Commit

Permalink
Fix json content return type
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasGuilloux committed Sep 29, 2021
1 parent 319979e commit 0861178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WebTest/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function __construct(SymfonyResponse $response)
}
}

public function getJsonContent(bool $assoc = true): array
public function getJsonContent(bool $assoc = true)
{
return \json_decode(
$this->getContent(),
Expand Down

0 comments on commit 0861178

Please sign in to comment.