Browse Source

fix BridgeAbstract

Alexis CHEMEL 7 years ago
parent
commit
f4aa3b39e8
1 changed files with 3 additions and 3 deletions
  1. 3 3
      lib/BridgeAbstract.php

+ 3 - 3
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;
 	}