diff --git a/system/HTTP/CLIRequest.php b/system/HTTP/CLIRequest.php index 64c0f0adae6d..708fbafbae63 100644 --- a/system/HTTP/CLIRequest.php +++ b/system/HTTP/CLIRequest.php @@ -223,7 +223,7 @@ public function isCLI(): bool * @param int|null $filter A filter name to apply. * @param mixed|null $flags * - * @return null + * @return array|null */ public function getGet($index = null, $filter = null, $flags = null) { @@ -237,7 +237,7 @@ public function getGet($index = null, $filter = null, $flags = null) * @param int|null $filter A filter name to apply * @param mixed $flags * - * @return null + * @return array|null */ public function getPost($index = null, $filter = null, $flags = null) { @@ -251,7 +251,7 @@ public function getPost($index = null, $filter = null, $flags = null) * @param int|null $filter A filter name to apply * @param mixed $flags * - * @return null + * @return array|null */ public function getPostGet($index = null, $filter = null, $flags = null) { @@ -265,7 +265,7 @@ public function getPostGet($index = null, $filter = null, $flags = null) * @param int|null $filter A filter name to apply * @param mixed $flags * - * @return null + * @return array|null */ public function getGetPost($index = null, $filter = null, $flags = null) {