1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-07-23 18:01:22 +02:00

Merge pull request #439 from chemel/travis

Fix errors returned by travis in BridgeAbstract
This commit is contained in:
LogMANOriginal
2016-12-12 17:02:57 +01:00
committed by GitHub

View File

@@ -194,11 +194,11 @@ abstract class BridgeAbstract implements BridgeInterface {
public function getURI(){ public function getURI(){
return static::URI; return static::URI;
} }
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;
} }