From f7360266f0197a5d8fefae47dc745db575270c9a Mon Sep 17 00:00:00 2001 From: Livia Scapin Date: Wed, 8 Feb 2017 13:48:22 +0100 Subject: [PATCH] Fix invalid return value hint --- lib/Cake/Network/CakeRequest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Network/CakeRequest.php b/lib/Cake/Network/CakeRequest.php index 7a12ec155..96a0183d1 100644 --- a/lib/Cake/Network/CakeRequest.php +++ b/lib/Cake/Network/CakeRequest.php @@ -1006,7 +1006,7 @@ class CakeRequest implements ArrayAccess { * @param string $callback A decoding callback that will convert the string data to another * representation. Leave empty to access the raw input data. You can also * supply additional parameters for the decoding callback using var args, see above. - * @return The decoded/processed request data. + * @return mixed The decoded/processed request data. */ public function input($callback = null) { $input = $this->_readInput();