Passed
Push — master ( 7495de...08da91 )
by CodexShaper
02:18
created
src/Drivers/MysqlDumper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
             $command .= "--tables {$includetables} ";
99 99
         }
100 100
         // Ignore Tables
101
-        $ignoreTables = [];
101
+        $ignoreTables = [ ];
102 102
         foreach ($this->ignoreTables as $tableName) {
103 103
             $command .= "--ignore-table={$this->dbName}.{$tableName} ";
104 104
         }
Please login to merge, or discard this patch.
src/Drivers/MongoDumper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,9 +86,9 @@
 block discarded – undo
86 86
             $command = sprintf(
87 87
                 '%smongodump %s --uri %s %s',
88 88
                 $this->dumpCommandPath,
89
-                $options['archive'],
89
+                $options[ 'archive' ],
90 90
                 $this->uri,
91
-                $options['collection']
91
+                $options[ 'collection' ]
92 92
             );
93 93
         }
94 94
 
Please login to merge, or discard this patch.