From e6239e6af2cc811aecd4d5fb355834929bc52915 Mon Sep 17 00:00:00 2001 From: gregorip02 Date: Sun, 18 Apr 2021 00:42:03 +0000 Subject: [PATCH] Apply code style fixes --- src/RequestParser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RequestParser.php b/src/RequestParser.php index beea6c5..e551504 100644 --- a/src/RequestParser.php +++ b/src/RequestParser.php @@ -74,7 +74,7 @@ protected function getQueryParamValue(): array $paramValue = $this->request->input($paramName); - if (!is_array($paramValue)) { + if (! is_array($paramValue)) { throw new Exception(sprintf('The value of param %s must be array', $paramName)); }