Passed
Push — master ( d15b5c...66f0ce )
by CodexShaper
02:08
created
src/Drivers/MysqlDumper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -166,9 +166,9 @@
 block discarded – undo
166 166
 
167 167
     public function prepareIgnoreTables()
168 168
     {
169
-        $ignoreTablesArgs = [];
169
+        $ignoreTablesArgs = [ ];
170 170
         foreach ($this->ignoreTables as $tableName) {
171
-            $ignoreTablesArgs[] = "--ignore-table=" . $databaseArg . "." . $tableName;
171
+            $ignoreTablesArgs[ ] = "--ignore-table=" . $databaseArg . "." . $tableName;
172 172
         }
173 173
         $ignoreTablesArg = (count($ignoreTablesArgs) > 0) ? implode(' ', $ignoreTablesArgs) : '';
174 174
         return $ignoreTablesArg;
Please login to merge, or discard this patch.