예제 #1
0
 /**
  * Check for login
  * (final method to (un)register verification, work is done by _check())
  *
  * @return	bool
  */
 public final function check()
 {
     if (!$this->perform_check()) {
         \Auth::_unregister_verified($this);
         return false;
     }
     \Auth::_register_verified($this);
     return true;
 }