From 37ef87b9ab321ea3bd722e1e42c0a097b302ccf1 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 29 Jul 2015 15:46:40 +0200 Subject: [PATCH] lib: Fix PHPDoc in ExternalBackend refs #9660 --- .../Authentication/User/ExternalBackend.php | 20 ++++--------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/library/Icinga/Authentication/User/ExternalBackend.php b/library/Icinga/Authentication/User/ExternalBackend.php index c6dbbfb51..62b1ea40e 100644 --- a/library/Icinga/Authentication/User/ExternalBackend.php +++ b/library/Icinga/Authentication/User/ExternalBackend.php @@ -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) {