Created The getURI function (markdown)

LogMANOriginal 2018-09-15 17:42:19 +02:00
parent bb1d341135
commit ae2c637a06

9
The-getURI-function.md Normal file

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