1
0
Fork 0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-04-02 23:05:47 +03:00

fix BridgeAbstract

This commit is contained in:
Alexis CHEMEL 2016-12-06 01:01:07 +01:00
parent c702a0e69f
commit f4aa3b39e8

View file

@ -197,8 +197,8 @@ abstract class BridgeAbstract implements BridgeInterface {
public function getExtraInfos(){ public function getExtraInfos(){
$extraInfos = array(); $extraInfos = array();
$extraInfos['name']= $this->getName(); $extraInfos['name'] = $this->getName();
$extraInfos['uri']= $this->getURI(); $extraInfos['uri'] = $this->getURI();
return $extraInfos; return $extraInfos;
} }