From d270811df9cd0badf88d61b867bee4207cc51b24 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Tue, 14 Jul 2009 00:19:26 -0600 Subject: [PATCH] Fix abstract declaration. --- framework/Auth/lib/Horde/Auth/Base.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/framework/Auth/lib/Horde/Auth/Base.php b/framework/Auth/lib/Horde/Auth/Base.php index 7a7999426..17d23cc94 100644 --- a/framework/Auth/lib/Horde/Auth/Base.php +++ b/framework/Auth/lib/Horde/Auth/Base.php @@ -125,9 +125,13 @@ abstract class Horde_Auth_Base * field, and the REASON_* constant in the code field (defaults to * REASON_MESSAGE). * + * @param string $userID The userID to check. + * @param array $credentials An array of login credentials. + * * @throws Horde_Exception */ - abstract protected function _authenticate(); + abstract protected function _authenticate($userId, $credentials); + /** * Adds a set of authentication credentials. -- 2.11.0