@@ -98,7 +98,7 @@ |
||
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 | } |
@@ -86,9 +86,9 @@ |
||
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 |