From ddc5b504595b8ec54cceec375a46fe5f23b7a7fe Mon Sep 17 00:00:00 2001 From: Marco Date: Sat, 23 Sep 2017 00:17:31 +0200 Subject: [PATCH] Improve list of methods that support 'remember me' feature in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8dea549..9cb3bbb 100644 --- a/README.md +++ b/README.md @@ -198,7 +198,7 @@ If you want the user to be automatically signed in after successful confirmation ### Keeping the user logged in -The third parameter to the `Auth#login` method controls whether the login is persistent with a long-lived cookie. With such a persistent login, users may stay authenticated for a long time, even when the browser session has already been closed and the session cookies have expired. Typically, you'll want to keep the user logged in for weeks or months with this feature, which is known as "remember me" or "keep me logged in". Many users will find this more convenient, but it may be less secure if they leave their devices unattended. +The third parameter to the `Auth#login` and `Auth#confirmEmailAndSignIn` methods controls whether the login is persistent with a long-lived cookie. With such a persistent login, users may stay authenticated for a long time, even when the browser session has already been closed and the session cookies have expired. Typically, you'll want to keep the user logged in for weeks or months with this feature, which is known as "remember me" or "keep me logged in". Many users will find this more convenient, but it may be less secure if they leave their devices unattended. ```php if ($_POST['remember'] == 1) {