Passed
Push — master ( 4faf36...536d38 )
by CodexShaper
07:41
created
src/Drivers/MysqlDumper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,9 +72,9 @@
 block discarded – undo
72 72
         $includeTables    = (count($this->tables) > 0) ? implode(' ', $this->tables) : "";
73 73
         $includeTablesArg = !empty($includeTables) ? '--tables ' . $includeTables : '';
74 74
         // Ignore Tables
75
-        $ignoreTablesArgs = [];
75
+        $ignoreTablesArgs = [ ];
76 76
         foreach ($this->ignoreTables as $tableName) {
77
-            $ignoreTablesArgs[] = "--ignore-table=" . $databaseArg . "." . $tableName;
77
+            $ignoreTablesArgs[ ] = "--ignore-table=" . $databaseArg . "." . $tableName;
78 78
         }
79 79
         $ignoreTablesArg = (count($ignoreTablesArgs) > 0) ? implode(' ', $ignoreTablesArgs) : '';
80 80
         // Single Transaction
Please login to merge, or discard this patch.