Skip to content

Commit

Permalink
[9.x] Align Remember Me Cookie Duration with CookieJar expiration (#4…
Browse files Browse the repository at this point in the history
…4026)

* [8.x] Align Remember Me Cookie Duration with CookieJar expiration

This PR laravel/framework#43806 changed the max cookie lifetime of the "forever" cookie - these two values are now misaligned.

* Update Test
  • Loading branch information
bogdankharchenko authored Sep 6, 2022
1 parent acbb5c4 commit 4a46b32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SessionGuard.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class SessionGuard implements StatefulGuard, SupportsBasicAuth
*
* @var int
*/
protected $rememberDuration = 2628000;
protected $rememberDuration = 576000;

/**
* The session used by the guard.
Expand Down

0 comments on commit 4a46b32

Please sign in to comment.