From 7b55001eeeb326323d020dcfac2f864f8c3ad633 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 26 Apr 2017 15:29:22 +0300 Subject: fix various issues reported by static analysis update gitlab-ci config --- classes/auth/base.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'classes/auth/base.php') diff --git a/classes/auth/base.php b/classes/auth/base.php index 69acd0985..26b6e4ab7 100644 --- a/classes/auth/base.php +++ b/classes/auth/base.php @@ -6,10 +6,16 @@ class Auth_Base { $this->dbh = Db::get(); } + /** + * @SuppressWarnings(unused) + */ function check_password($owner_uid, $password) { return false; } + /** + * @SuppressWarnings(unused) + */ function authenticate($login, $password) { return false; } -- cgit v1.2.3-54-g00ecf