From 2a2a49fdd97b5e007f11bdc548302c9793b59700 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Schro=CC=88der?= Date: Sun, 10 Nov 2013 12:00:47 +0100 Subject: [PATCH] fixed plugin class --- application/core/plugin.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/core/plugin.php b/application/core/plugin.php index 6e7d10bc..3d113d4b 100644 --- a/application/core/plugin.php +++ b/application/core/plugin.php @@ -39,7 +39,7 @@ abstract class Plugin { * * @return float */ - public abstract function getVersion() { + public function getVersion() { return $this->version; } @@ -48,7 +48,7 @@ abstract class Plugin { * * @return string */ - public abstract function getName() { + public function getName() { return $this->name; } @@ -57,7 +57,7 @@ abstract class Plugin { * * @return string */ - public abstract function getDescription() { + public function getDescription() { return $this->description; } }