Skip to content

Commit 74fe864

Browse files
replace mixed in system\HTTP\IncomingRequest.php
1 parent d26b65e commit 74fe864

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

system/HTTP/IncomingRequest.php

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ public function getDefaultLocale(): string
572572
*
573573
* @param array|string|null $index
574574
* @param int|null $filter Filter constant
575-
* @param mixed $flags
575+
* @param array|int|null $flags
576576
*
577577
* @return array|bool|float|int|stdClass|string|null
578578
*/
@@ -707,7 +707,7 @@ public function getRawInput()
707707
* @param int|null $filter Filter Constant
708708
* @param array|int|null $flags Option
709709
*
710-
* @return mixed
710+
* @return array|bool|int|object|null
711711
*/
712712
public function getRawInputVar($index = null, ?int $filter = null, $flags = null)
713713
{
@@ -759,9 +759,9 @@ public function getRawInputVar($index = null, ?int $filter = null, $flags = null
759759
*
760760
* @param array|string|null $index Index for item to fetch from $_GET.
761761
* @param int|null $filter A filter name to apply.
762-
* @param mixed|null $flags
762+
* @param array|int|null $flags
763763
*
764-
* @return mixed
764+
* @return array|bool|string|null
765765
*/
766766
public function getGet($index = null, $filter = null, $flags = null)
767767
{
@@ -773,9 +773,9 @@ public function getGet($index = null, $filter = null, $flags = null)
773773
*
774774
* @param array|string|null $index Index for item to fetch from $_POST.
775775
* @param int|null $filter A filter name to apply
776-
* @param mixed $flags
776+
* @param array|int|null $flags
777777
*
778-
* @return mixed
778+
* @return array|bool|string|null
779779
*/
780780
public function getPost($index = null, $filter = null, $flags = null)
781781
{
@@ -787,9 +787,9 @@ public function getPost($index = null, $filter = null, $flags = null)
787787
*
788788
* @param array|string|null $index Index for item to fetch from $_POST or $_GET
789789
* @param int|null $filter A filter name to apply
790-
* @param mixed $flags
790+
* @param array|int|null $flags
791791
*
792-
* @return mixed
792+
* @return array|bool|string|null
793793
*/
794794
public function getPostGet($index = null, $filter = null, $flags = null)
795795
{
@@ -809,9 +809,9 @@ public function getPostGet($index = null, $filter = null, $flags = null)
809809
*
810810
* @param array|string|null $index Index for item to be fetched from $_GET or $_POST
811811
* @param int|null $filter A filter name to apply
812-
* @param mixed $flags
812+
* @param array|int|null $flags
813813
*
814-
* @return mixed
814+
* @return array|bool|string|null
815815
*/
816816
public function getGetPost($index = null, $filter = null, $flags = null)
817817
{
@@ -831,9 +831,9 @@ public function getGetPost($index = null, $filter = null, $flags = null)
831831
*
832832
* @param array|string|null $index Index for item to be fetched from $_COOKIE
833833
* @param int|null $filter A filter name to be applied
834-
* @param mixed $flags
834+
* @param array|int|null $flags
835835
*
836-
* @return mixed
836+
* @return array|bool|string|null
837837
*/
838838
public function getCookie($index = null, $filter = null, $flags = null)
839839
{

0 commit comments

Comments
 (0)