From c7f1b605f25d6945d4f3eea91492e5701c6292fb Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sat, 18 Jan 2020 17:56:44 +0000 Subject: [PATCH] PluginBase: remove useless duplicate doc comment from onLoad() stub --- src/pocketmine/plugin/PluginBase.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/pocketmine/plugin/PluginBase.php b/src/pocketmine/plugin/PluginBase.php index 4d8b65e69..5b77f3229 100644 --- a/src/pocketmine/plugin/PluginBase.php +++ b/src/pocketmine/plugin/PluginBase.php @@ -85,9 +85,6 @@ abstract class PluginBase implements Plugin{ $this->scheduler = new TaskScheduler($this->logger, $this->getFullName()); } - /** - * Called when the plugin is loaded, before calling onEnable() - */ public function onLoad(){ }