Skip to content

Commit

Permalink
Merge pull request #5939 from aik099/add-missing-intetrface-method-fix
Browse files Browse the repository at this point in the history
Adding missing `guest` method to `Authentificator` interface
  • Loading branch information
taylorotwell committed Oct 2, 2014
2 parents 62c9631 + b53851c commit 8818ec3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/Illuminate/Contracts/Auth/Authenticator.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ interface Authenticator {
*/
public function check();

/**
* Determine if the current user is a guest.
*
* @return bool
*/
public function guest();

/**
* Get the currently authenticated user.
*
Expand Down

0 comments on commit 8818ec3

Please sign in to comment.