From 5b88244c0afd5febe9f54e8544b0870b55ef6cfd Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 27 May 2016 20:38:56 -0500 Subject: [PATCH] fix return --- src/Illuminate/Auth/AuthManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Auth/AuthManager.php b/src/Illuminate/Auth/AuthManager.php index 39a16c7b20e9..10a2610e743b 100755 --- a/src/Illuminate/Auth/AuthManager.php +++ b/src/Illuminate/Auth/AuthManager.php @@ -193,7 +193,7 @@ public function getDefaultDriver() */ public function shouldUse($name) { - return $this->setDefaultDriver($name); + $this->setDefaultDriver($name); $this->userResolver = function ($name = null) { return $this->guard($name)->user();