Fix another documentation block

This commit is contained in:
Johannes Meyer 2014-08-22 12:18:26 +02:00
parent 75a0c17933
commit a0b2c0b454
1 changed files with 12 additions and 5 deletions

View File

@ -19,11 +19,6 @@ class AutologinBackendForm extends BaseBackendForm
$this->setName('form_config_authentication_autologin');
}
public function isValidAuthenticationBackend()
{
return true;
}
/**
* @see Form::createElements()
*/
@ -78,4 +73,16 @@ class AutologinBackendForm extends BaseBackendForm
)
);
}
/**
* Validate the configuration state of this backend
*
* Returns just true as autologins are being handled externally by the webserver.
*
* @return true
*/
public function isValidAuthenticationBackend()
{
return true;
}
}