Skip to content

Commit

Permalink
fix return
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed May 28, 2016
1 parent e3986a4 commit 5b88244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Auth/AuthManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 5b88244

Please sign in to comment.