From 9881df2ba2502c6b06e1c1d0f3499c1953cff937 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Sat, 19 Sep 2020 17:43:15 +0200 Subject: [PATCH] cs --- src/Symfony/Component/HttpFoundation/Request.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpFoundation/Request.php b/src/Symfony/Component/HttpFoundation/Request.php index e3c2667a7d204..286c329614edc 100644 --- a/src/Symfony/Component/HttpFoundation/Request.php +++ b/src/Symfony/Component/HttpFoundation/Request.php @@ -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)) {