You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Cookie.php, the expiry time is 2 years ; this should be changed to 13 months 🥇 Thanks.
/**
* Returns the default expiry time, 13 months
*
* @return int Timestamp in 13 months
*/
protected function getDefaultExpire()
{
return time() + 86400 * 365 + 86400 * 28;
}