From e6ee0f685db99af4cb482439baa0a4fa67ca9c83 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 14 Dec 2022 08:41:15 -0600 Subject: [PATCH] wip --- src/Illuminate/Auth/SessionGuard.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Illuminate/Auth/SessionGuard.php b/src/Illuminate/Auth/SessionGuard.php index 1d7a373375a9..8b7992175cb4 100644 --- a/src/Illuminate/Auth/SessionGuard.php +++ b/src/Illuminate/Auth/SessionGuard.php @@ -631,8 +631,9 @@ protected function clearUserDataFromStorage() $this->getCookieJar()->unqueue($this->getRecallerName()); if (! is_null($this->recaller())) { - $this->getCookieJar()->queue($this->getCookieJar() - ->forget($this->getRecallerName())); + $this->getCookieJar()->queue( + $this->getCookieJar()->forget($this->getRecallerName()) + ); } }