parent
1b5c5deace
commit
37ef87b9ab
|
@ -36,11 +36,7 @@ class ExternalBackend implements UserBackendInterface
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set this backend's name
|
* {@inheritdoc}
|
||||||
*
|
|
||||||
* @param string $name
|
|
||||||
*
|
|
||||||
* @return $this
|
|
||||||
*/
|
*/
|
||||||
public function setName($name)
|
public function setName($name)
|
||||||
{
|
{
|
||||||
|
@ -49,24 +45,16 @@ class ExternalBackend implements UserBackendInterface
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return this backend's name
|
* {@inheritdoc}
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
*/
|
||||||
public function getName()
|
public function getName()
|
||||||
{
|
{
|
||||||
return $this->name;
|
return $this->name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Authenticate the given user
|
* {@inheritdoc}
|
||||||
*
|
|
||||||
* @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
|
|
||||||
*/
|
*/
|
||||||
public function authenticate(User $user, $password = null)
|
public function authenticate(User $user, $password = null)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue