Skip to content

Commit

Permalink
Fix RequestGuard::user() returning void
Browse files Browse the repository at this point in the history
Broken since f8a8e775c79f012806c9bef4d0302b14d9e14a1f
  • Loading branch information
JoostK committed Dec 17, 2015
1 parent 21c4f5d commit b8df6e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RequestGuard.php
Expand Up @@ -51,7 +51,7 @@ public function user()
return $this->user;
}

$this->user = call_user_func($this->callback, $this->request);
return $this->user = call_user_func($this->callback, $this->request);
}

/**
Expand Down

0 comments on commit b8df6e0

Please sign in to comment.