From 834c44b3030b86bbacc6357bb7af9c65ed1f3ee5 Mon Sep 17 00:00:00 2001 From: mark_story Date: Mon, 13 Sep 2010 23:06:15 -0400 Subject: [PATCH] Fixing return value tag. --- cake/libs/cake_request.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/libs/cake_request.php b/cake/libs/cake_request.php index 435d5007d..7ff06df2f 100644 --- a/cake/libs/cake_request.php +++ b/cake/libs/cake_request.php @@ -359,7 +359,7 @@ class CakeRequest implements ArrayAccess { * * @param boolean $safe Use safe = false when you think the user might manipulate their HTTP_CLIENT_IP * header. Setting $safe = false will will also look at HTTP_X_FORWARDED_FOR - * @return void + * @return string The client IP. */ public function clientIp($safe = true) { if (!$safe && env('HTTP_X_FORWARDED_FOR') != null) {