From 740d5e37d0f11a66c33f68204784f634900c350e Mon Sep 17 00:00:00 2001 From: Vitaly Muzichuk Date: Wed, 7 Feb 2018 17:50:03 -0500 Subject: [PATCH] corrected RememberTokens class name --- app/library/Auth/Auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/library/Auth/Auth.php b/app/library/Auth/Auth.php index 56222231..e2dfdfa3 100644 --- a/app/library/Auth/Auth.php +++ b/app/library/Auth/Auth.php @@ -249,7 +249,7 @@ public function remove() if ($this->cookies->has('RMT')) { $token = $this->cookies->get('RMT')->getValue(); - UserRememberTokens::findFirstByToken($token)->delete(); + RememberTokens::findFirstByToken($token)->delete(); $this->cookies->get('RMT')->delete(); }