From d9306b7288ecf040e9dc1d3b17d42f23489907c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ale=C5=A1?= Date: Thu, 14 Mar 2024 08:57:08 +0100 Subject: [PATCH] phpstan fix --- src/Request.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Request.php b/src/Request.php index 252f5a1..4f9e1d9 100644 --- a/src/Request.php +++ b/src/Request.php @@ -270,7 +270,6 @@ public function getQueryParams(): array // Decode URL data parse_str($this->uri->getQuery(), $this->queryParams); - // @phpstan-ignore-next-line return is_array($this->queryParams) ? $this->queryParams : []; }