Add Cookie::forever constant, fixes #660

Signed-off-by: Colin Viebrock <colin@viebrock.ca>
This commit is contained in:
Colin Viebrock 2012-05-10 16:32:07 -05:00
parent df79b47cc9
commit 5637a29fa3
1 changed files with 9 additions and 2 deletions

View File

@ -2,6 +2,13 @@
class Cookie {
/**
* How long is forever (in minutes).
*
* @var int
*/
const forever = 525600;
/**
* The cookies that have been set.
*
@ -96,7 +103,7 @@ public static function put($name, $value, $expiration = 0, $path = '/', $domain
*/
public static function forever($name, $value, $path = '/', $domain = null, $secure = false)
{
return static::put($name, $value, 525600, $path, $domain, $secure);
return static::put($name, $value, static::forever, $path, $domain, $secure);
}
/**