fixed plugin class

This commit is contained in:
Steffen Schröder 2013-11-10 12:00:47 +01:00
parent 60510bf8c3
commit 2a2a49fdd9

View File

@ -39,7 +39,7 @@ abstract class Plugin {
* *
* @return float * @return float
*/ */
public abstract function getVersion() { public function getVersion() {
return $this->version; return $this->version;
} }
@ -48,7 +48,7 @@ abstract class Plugin {
* *
* @return string * @return string
*/ */
public abstract function getName() { public function getName() {
return $this->name; return $this->name;
} }
@ -57,7 +57,7 @@ abstract class Plugin {
* *
* @return string * @return string
*/ */
public abstract function getDescription() { public function getDescription() {
return $this->description; return $this->description;
} }
} }