summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-11-15 06:56:30 +0300
committerAndrew Dolgov <[email protected]>2021-11-15 06:56:30 +0300
commite6de33230e0d5fb9167028e77988d228d975c449 (patch)
treeae4ca5b635a3d16067ba4286a43c116e5577a008
parent573fbe93ffb03d07c91c00aebcb91ec3932cbc1b (diff)
fix phpstan warnings
-rw-r--r--init.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/init.php b/init.php
index 57d4c99..f750674 100644
--- a/init.php
+++ b/init.php
@@ -1,6 +1,5 @@
<?php
class No_URL_Hashes extends Plugin {
- private $host;
function about() {
return array(null,
@@ -9,8 +8,7 @@ class No_URL_Hashes extends Plugin {
}
function init($host) {
- $this->host = $host;
-
+ //
}
function get_js() {
@@ -21,4 +19,4 @@ class No_URL_Hashes extends Plugin {
return 2;
}
-} \ No newline at end of file
+}