mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-06 08:37:30 +02:00
[BridgeAbstract] Fix return values of get* functions
@@ -169,7 +169,7 @@ This function returns the name of the bridge as it will be displayed on the main
|
||||
|
||||
```PHP
|
||||
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
|
||||
public function getURI(){
|
||||
return $this->uri;
|
||||
return self::URI;
|
||||
}
|
||||
```
|
||||
|
||||
|
Reference in New Issue
Block a user