diff --git a/laravel/auth/drivers/driver.php b/laravel/auth/drivers/driver.php index 872b0275..d2927cd9 100644 --- a/laravel/auth/drivers/driver.php +++ b/laravel/auth/drivers/driver.php @@ -188,7 +188,7 @@ abstract class Driver { extract($config); - Cookie::put($name, $minutes, $value, $path, $domain, $secure); + Cookie::put($name, $value, $minutes, $path, $domain, $secure); } /** diff --git a/laravel/cookie.php b/laravel/cookie.php index 870eb891..78c13a6d 100644 --- a/laravel/cookie.php +++ b/laravel/cookie.php @@ -2,6 +2,13 @@ class Cookie { + /** + * How long is forever (in minutes). + * + * @var int + */ + const forever = 525600; + /** * The cookies that have been set. * @@ -27,7 +34,7 @@ class Cookie { * // Get the value of the "favorite" cookie * $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'); * * @@ -96,7 +103,7 @@ class Cookie { */ 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); } /** diff --git a/laravel/documentation/changes.md b/laravel/documentation/changes.md index 2b5e2ec1..f74f7801 100644 --- a/laravel/documentation/changes.md +++ b/laravel/documentation/changes.md @@ -74,6 +74,7 @@ - Added true reflection based IoC to container. - Added `Request::route()->controller` and `Request::route()->controller_action`. - Added `Event::queue`, `Event::flusher`, and `Event::flush` methods to Event class. +- Added `array_except` and `array_only` helpers, similar to `Input::except` and `Input::only` but for arbitrary arrays. ## Upgrading From 3.1