From c300e7c7f6ca632e6edd91e71df6a75d69a21ce6 Mon Sep 17 00:00:00 2001 From: Brady Wetherington Date: Tue, 8 Feb 2022 12:09:40 -0800 Subject: [PATCH] Remove extraneous backslash --- app/Http/Requests/Request.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Requests/Request.php b/app/Http/Requests/Request.php index 7069cd563..e4562e275 100644 --- a/app/Http/Requests/Request.php +++ b/app/Http/Requests/Request.php @@ -12,7 +12,7 @@ abstract class Request extends FormRequest public function json($key = null, $default = null) { if ($this->ajax() || $this->wantsJson()) { - json_decode($this->getContent(), false, 512, \JSON_THROW_ON_ERROR); // ignore output, just throw + json_decode($this->getContent(), false, 512, JSON_THROW_ON_ERROR); // ignore output, just throw } return parent::json($key, $default); }