From f4aa3b39e835255fe32dba60f3ad60ff19cd8129 Mon Sep 17 00:00:00 2001 From: Alexis CHEMEL Date: Tue, 6 Dec 2016 01:01:07 +0100 Subject: [PATCH] fix BridgeAbstract --- lib/BridgeAbstract.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/BridgeAbstract.php b/lib/BridgeAbstract.php index 8282bebe..0be94236 100644 --- a/lib/BridgeAbstract.php +++ b/lib/BridgeAbstract.php @@ -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; }