Passed
Push — master ( dd1f33...b89182 )
by Guillaume
09:47
created
src/Factory/MysqlDatabaseFactory.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -115,14 +115,14 @@
 block discarded – undo
115 115
     }
116 116
 
117 117
 	
118
-	public function exportStructure(){
119
-		$export = [];
118
+    public function exportStructure(){
119
+        $export = [];
120 120
         $tables = $this->repositoryMysql->getTablesStructure($this->databaseName);
121 121
         foreach ($tables as $table) {
122 122
             $export[$table] = $this->getIndex($table);
123 123
             $export[$table]['columns'] = $this->getColumns($table);
124 124
         }
125 125
 		
126
-		return json_encode($export);
127
-	}
126
+        return json_encode($export);
127
+    }
128 128
 }
Please login to merge, or discard this patch.