Merge pull request #3 from griffaurel/Bridge_setExtrainfos

correction again...
This commit is contained in:
Badet Aurélien 2016-11-18 15:51:41 +01:00 committed by GitHub
commit 649f326871

View File

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