From 4a46b32cfb71d71174e838116c39d98554d4fdde Mon Sep 17 00:00:00 2001 From: Bogdan Kharchenko <32746389+bogdankharchenko@users.noreply.github.com> Date: Tue, 6 Sep 2022 11:18:13 -0400 Subject: [PATCH] [9.x] Align Remember Me Cookie Duration with CookieJar expiration (#44026) * [8.x] Align Remember Me Cookie Duration with CookieJar expiration This PR https://github.com/laravel/framework/pull/43806 changed the max cookie lifetime of the "forever" cookie - these two values are now misaligned. * Update Test --- SessionGuard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SessionGuard.php b/SessionGuard.php index 652835f9..9d4aeb8c 100644 --- a/SessionGuard.php +++ b/SessionGuard.php @@ -58,7 +58,7 @@ class SessionGuard implements StatefulGuard, SupportsBasicAuth * * @var int */ - protected $rememberDuration = 2628000; + protected $rememberDuration = 576000; /** * The session used by the guard.