Merge pull request #661 from cviebrock/develop

Fix for #660
This commit is contained in:
Taylor Otwell 2012-05-10 14:33:55 -07:00
commit 492b49a04b
1 changed files with 9 additions and 2 deletions

View File

@ -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.
* *
@ -27,7 +34,7 @@ public static function has($name)
* // Get the value of the "favorite" cookie * // Get the value of the "favorite" cookie
* $favorite = Cookie::get('favorite'); * $favorite = Cookie::get('favorite');
* *
* // Get the value of a cookie or return a default value * // Get the value of a cookie or return a default value
* $favorite = Cookie::get('framework', 'Laravel'); * $favorite = Cookie::get('framework', 'Laravel');
* </code> * </code>
* *
@ -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) 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);
} }
/** /**