lib: Fix PHPDoc in ExternalBackend

refs #9660
This commit is contained in:
Eric Lippmann 2015-07-29 15:46:40 +02:00
parent 1b5c5deace
commit 37ef87b9ab
1 changed files with 4 additions and 16 deletions

View File

@ -36,11 +36,7 @@ class ExternalBackend implements UserBackendInterface
}
/**
* Set this backend's name
*
* @param string $name
*
* @return $this
* {@inheritdoc}
*/
public function setName($name)
{
@ -49,24 +45,16 @@ class ExternalBackend implements UserBackendInterface
}
/**
* Return this backend's name
*
* @return string
* {@inheritdoc}
*/
public function getName()
{
return $this->name;
}
/**
* Authenticate the given user
*
* @param User $user
* @param string $password
*
* @return bool True on success, false on failure
*
* @throws AuthenticationException In case authentication is not possible due to an error
* {@inheritdoc}
*/
public function authenticate(User $user, $password = null)
{