isGuest() public method

Check whether or not the user is a guest.
public isGuest ( ) : boolean
return boolean
Exemplo n.º 1
0
 /**
  * @param User $actor
  * @throws PermissionDeniedException
  */
 protected function assertRegistered(User $actor)
 {
     $this->assertPermission(!$actor->isGuest());
 }