Created The getDescription function (markdown)

LogMANOriginal 2018-09-15 17:32:20 +02:00
parent 1277ef438c
commit 906a132e4b

@ -0,0 +1,9 @@
The `getDescription` function returns the description for a bridge.
**Notice:** By default **RSS-Bridge** returns the contents of `const DESCRIPTION`, so you only have to implement this function if you require different behavior!
```PHP
public function getDescription(){
return self::DESCRIPTION;
}
```