, Jam Warehouse (Pty) Ltd, South Africa * @package lib.authentication */ class Authenticator { /** * Checks the user's password * * @param string the name of the user to check * @param string the password to check * @return boolean true if the password is correct, else false */ function checkPassword($sUserName, $sPassword) { return false; } } ?>