From: Radek Czajka Date: Wed, 15 Oct 2014 12:05:20 +0000 (+0200) Subject: Piwik 2.8.0 compatibility: Added missing abstract methods to Auth. X-Git-Tag: 0.7.2 X-Git-Url: https://git.mdrn.pl/piwik-CASLogin.git/commitdiff_plain/da6f7c41eceec513d592d5381d3005e427043ae2 Piwik 2.8.0 compatibility: Added missing abstract methods to Auth. --- diff --git a/Auth.php b/Auth.php index c2d9446..799d38a 100644 --- a/Auth.php +++ b/Auth.php @@ -134,11 +134,17 @@ class Auth implements \Piwik\Auth { $this->login = $login; } + public function getLogin() { + return $this->login; + } public function setTokenAuth($token_auth) { $this->token_auth = $token_auth; } + public function getTokenAuthSecret() { + return $this->token_auth; + } /** * This method is used to inject user into Piwik's tables. @@ -197,6 +203,9 @@ class Auth implements \Piwik\Auth ) ); } - + + // Those methods are required by Piwik API. + public function setPassword($password) {} + public function setPasswordHash($passwordHash) {} }