summaryrefslogtreecommitdiff
path: root/classes/iauthmodule.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-10-25 12:55:09 +0300
committerAndrew Dolgov <[email protected]>2023-10-25 12:55:09 +0300
commit865ecc87963dc3b26e66296616eef2a1cc41ac3f (patch)
treebf2ecd8a391103bdb2c8b70cd33c47467310754b /classes/iauthmodule.php
parent0a5507d3bd79d04c860455664f919bf8e7274fda (diff)
move to psr-4 autoloader
Diffstat (limited to 'classes/iauthmodule.php')
-rw-r--r--classes/iauthmodule.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/classes/iauthmodule.php b/classes/iauthmodule.php
deleted file mode 100644
index dbf8c5587..000000000
--- a/classes/iauthmodule.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-interface IAuthModule {
- /**
- * @param string $login
- * @param string $password
- * @param string $service
- * @return int|false user_id
- */
- function authenticate($login, $password, $service = '');
-
- /** this is a pluginhost compatibility wrapper that invokes $this->authenticate(...$args) (Auth_Base)
- * @param string $login
- * @param string $password
- * @param string $service
- * @return int|false user_id
- */
- function hook_auth_user($login, $password, $service = '');
-}