summaryrefslogtreecommitdiff
path: root/classes/plugin.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-11-13 19:52:47 +0300
committerAndrew Dolgov <[email protected]>2021-11-13 19:52:47 +0300
commit03d069226886a6955cc71c6b25ddc92b9b7d47b2 (patch)
treecb822f50409c1e3f1f6f85cb3da2cff4d962df93 /classes/plugin.php
parent68d7cf44f994b422ede2adc6d182d5efce5cbe64 (diff)
no need to duplicate annotations
Diffstat (limited to 'classes/plugin.php')
-rw-r--r--classes/plugin.php7
1 files changed, 6 insertions, 1 deletions
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<float|string|bool> */
+ /** @return array<null|float|string|bool> */
abstract function about();
// return array(1.0, "plugin", "No description", "No author", false);
@@ -50,6 +50,11 @@ abstract class Plugin {
}
/** @return string */
+ function get_css() {
+ return "";
+ }
+
+ /** @return string */
function get_prefs_js() {
return "";
}