summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-11-10 21:06:55 +0300
committerAndrew Dolgov <[email protected]>2021-11-10 21:06:55 +0300
commit083dfa0ca95124bebf23c22e89fdcb7d901319a5 (patch)
tree3d661152f5981b86aa8037e3d5efa7ae99a7a37b
parent3431e1195b2725845e519df8a26530c70be731e8 (diff)
phpstan 1.0 cleanup
-rw-r--r--init.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/init.php b/init.php
index 90179c0..e51a5d2 100644
--- a/init.php
+++ b/init.php
@@ -1,9 +1,6 @@
<?php
class VF_Shared extends Plugin {
- /* @var PluginHost $host */
- private $host;
-
function about() {
return array(null,
"Feed for all articles actively shared by URL",
@@ -12,8 +9,6 @@ class VF_Shared extends Plugin {
}
function init($host) {
- $this->host = $host;
-
$host->add_feed(-1, __("Shared articles"), 'link', $this);
}