From 05b25f1441c87a9e1e5e5f05ae61d623ac46c3f7 Mon Sep 17 00:00:00 2001 From: Arnold Daniels Date: Thu, 29 Dec 2016 00:00:14 +0100 Subject: [PATCH] Minor README fix [skip ci] --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e92695e..82c0378 100644 --- a/README.md +++ b/README.md @@ -347,11 +347,11 @@ _If `$user->onLogin()` returns `false`, the user isn't set and the function retu Logout - logout() + void logout() Get current user - User user() + User|null user() ### Authorization @@ -460,8 +460,8 @@ $url = "http://$host/reset.php?token=$confirmationToken"; mail( $user->getEmail(), - "Welcome to our site", - "Please confirm your account by visiting $url" + "Password reset request", + "You may reset your password by visiting $url" ); ```