Commit 492b49a0 authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #661 from cviebrock/develop

Fix for #660
parents df79b47c 5637a29f
...@@ -2,6 +2,13 @@ ...@@ -2,6 +2,13 @@
class Cookie { class Cookie {
/**
* How long is forever (in minutes).
*
* @var int
*/
const forever = 525600;
/** /**
* The cookies that have been set. * The cookies that have been set.
* *
...@@ -96,7 +103,7 @@ class Cookie { ...@@ -96,7 +103,7 @@ class Cookie {
*/ */
public static function forever($name, $value, $path = '/', $domain = null, $secure = false) 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);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment