From 97cb0035f4935e60ccd86f881156d4a1ddd23ad9 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 24 Feb 2012 10:31:43 -0600 Subject: [PATCH] clarify cookie comment. --- laravel/cookie.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/cookie.php b/laravel/cookie.php index 6c5cfceb..fc48212e 100644 --- a/laravel/cookie.php +++ b/laravel/cookie.php @@ -66,7 +66,7 @@ protected static function set($cookie) setcookie($name, $value, $time, $path, $domain, $secure); } } - + /** * Get the value of a cookie. @@ -92,7 +92,7 @@ public static function get($name, $default = null) if ( ! is_null($value) and isset($value[40]) and $value[40] == '~') { // The hash signature and the cookie value are separated by a tilde - // character for convenience. To separate the hash and the contents + // character for convenience. To separate the hash and the payload // we can simply expode on that character. list($hash, $value) = explode('~', $value, 2);