Example #1
0
 /**
  * Attempts to authenticate the given user according to the passed credentials.
  *
  * @param array $credentials The user login details
  * @param bool $remember Store a non-expire cookie for the user
  * @static 
  */
 public static function authenticate($credentials, $remember = true)
 {
     //Method inherited from \October\Rain\Auth\Manager
     return \RainLab\User\Classes\AuthManager::authenticate($credentials, $remember);
 }