lowercase variable name's first letter in func getExtraInfo

This commit is contained in:
Badet Aurélien 2016-11-28 19:07:36 +01:00 committed by GitHub
parent 0f79c62567
commit b98b2a7118

View File

@ -196,10 +196,10 @@ abstract class BridgeAbstract implements BridgeInterface {
}
public function getExtraInfos(){
$ExtraInfos = array();
$ExtraInfos['name']= $this->getName();
$ExtraInfos['uri']= $this->getURI();
return $ExtraInfos;
$extraInfos = array();
$extraInfos['name']= $this->getName();
$extraInfos['uri']= $this->getURI();
return $extraInfos;
}
public function setCache(\CacheInterface $cache){