Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/Illuminate/Contracts/Auth/Guard.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,11 @@ public function validate(array $credentials = []);
* @return void
*/
public function setUser(Authenticatable $user);

/**
* Determine if the guard has a user instance.
*
* @return bool
*/
public function hasUser();
}