summaryrefslogtreecommitdiff
path: root/plugins/auth_remote
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-11-10 20:58:40 +0300
committerAndrew Dolgov <[email protected]>2021-11-10 20:58:40 +0300
commit87a30d88d36941ad817f0d1409e2ededbe576af6 (patch)
tree0bd599c73c4bb16fab6d58b24332ac5497503e35 /plugins/auth_remote
parent9e8d69739f21e5ac85977d57a2a6c961e318c26e (diff)
plugin cleanup re: phpstan 1.0 warnings
Diffstat (limited to 'plugins/auth_remote')
-rw-r--r--plugins/auth_remote/init.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/plugins/auth_remote/init.php b/plugins/auth_remote/init.php
index 3be7aa26e..b240a9402 100644
--- a/plugins/auth_remote/init.php
+++ b/plugins/auth_remote/init.php
@@ -1,8 +1,6 @@
<?php
class Auth_Remote extends Auth_Base {
- private $host;
-
function about() {
return array(null,
"Authenticates against remote password (e.g. supplied by Apache)",
@@ -10,10 +8,7 @@ class Auth_Remote extends Auth_Base {
true);
}
- /* @var PluginHost $host */
function init($host) {
- $this->host = $host;
-
$host->add_hook($host::HOOK_AUTH_USER, $this);
}