From 03d069226886a6955cc71c6b25ddc92b9b7d47b2 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 13 Nov 2021 19:52:47 +0300 Subject: no need to duplicate annotations --- classes/plugin.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'classes') diff --git a/classes/plugin.php b/classes/plugin.php index 5b486d766..eae2c0c17 100644 --- a/classes/plugin.php +++ b/classes/plugin.php @@ -12,7 +12,7 @@ abstract class Plugin { * */ abstract function init($host); - /** @return array */ + /** @return array */ abstract function about(); // return array(1.0, "plugin", "No description", "No author", false); @@ -49,6 +49,11 @@ abstract class Plugin { return ""; } + /** @return string */ + function get_css() { + return ""; + } + /** @return string */ function get_prefs_js() { return ""; -- cgit v1.2.3-54-g00ecf