From: Michael M Slusarz Date: Tue, 14 Jul 2009 06:19:26 +0000 (-0600) Subject: Fix abstract declaration. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=d270811df9cd0badf88d61b867bee4207cc51b24;p=horde.git Fix abstract declaration. --- 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.