Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions system/HTTP/CLIRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand All @@ -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)
{
Expand All @@ -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)
{
Expand All @@ -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)
{
Expand Down