Fix another documentation block
This commit is contained in:
parent
75a0c17933
commit
a0b2c0b454
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue