1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-10-19 18:46:33 +02:00

Created The getName function (markdown)

LogMANOriginal
2018-09-15 17:41:00 +02:00
parent b10649af46
commit ded527bd0e

9
The-getName-function.md Normal file

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