From da6f7c41eceec513d592d5381d3005e427043ae2 Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Wed, 15 Oct 2014 14:05:20 +0200 Subject: [PATCH] Piwik 2.8.0 compatibility: Added missing abstract methods to Auth. --- Auth.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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) {} } -- 2.20.1