mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-11 21:39:13 +02:00
[BridgeAbstract] Fix return values of get* functions
parent
8d7e8fbbd6
commit
cc20b62205
1 changed files with 2 additions and 2 deletions
|
@ -169,7 +169,7 @@ This function returns the name of the bridge as it will be displayed on the main
|
||||||
|
|
||||||
```PHP
|
```PHP
|
||||||
public function getName(){
|
public function getName(){
|
||||||
return $this->name;
|
return self::NAME;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -181,7 +181,7 @@ This function returns the URI to the destination site of the bridge. It will be
|
||||||
|
|
||||||
```PHP
|
```PHP
|
||||||
public function getURI(){
|
public function getURI(){
|
||||||
return $this->uri;
|
return self::URI;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue