fix BridgeAbstract

This commit is contained in:
Alexis CHEMEL 2016-12-06 01:01:07 +01:00
parent c702a0e69f
commit f4aa3b39e8
1 changed files with 3 additions and 3 deletions

View File

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