summaryrefslogtreecommitdiff
path: root/classes/auth
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-04-26 15:29:22 +0300
committerAndrew Dolgov <[email protected]>2017-04-26 15:29:22 +0300
commit7b55001eeeb326323d020dcfac2f864f8c3ad633 (patch)
tree92b09e0349b49b1741a8b45172974addb136fbc5 /classes/auth
parentb49bb441f4fc722911794e80366d37df626a5613 (diff)
fix various issues reported by static analysis
update gitlab-ci config
Diffstat (limited to 'classes/auth')
-rw-r--r--classes/auth/base.php6
1 files changed, 6 insertions, 0 deletions
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;
}