Skip to content

Commit

Permalink
cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyholm committed Sep 19, 2020
1 parent 45a3bf2 commit 9881df2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Symfony/Component/HttpFoundation/Request.php
Expand Up @@ -1588,7 +1588,7 @@ public function toArray(): array
}

if (\PHP_VERSION_ID < 70300 && \JSON_ERROR_NONE !== json_last_error()) {
throw new JsonException('Could not decode request body: ' . json_last_error_msg(), json_last_error());
throw new JsonException('Could not decode request body: '.json_last_error_msg(), json_last_error());
}

if (!\is_array($content)) {
Expand Down

0 comments on commit 9881df2

Please sign in to comment.