Completed
Push — master ( 80c8cd...281eb8 )
by Sebastian
05:00
created
src/Backup/Source/Mysqldump.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -228,20 +228,20 @@
 block discarded – undo
228 228
         if (null == $this->executable) {
229 229
             $this->executable = new Executable\Mysqldump($this->pathToMysqldump);
230 230
             $this->executable->credentials($this->user, $this->password)
231
-                             ->useHost($this->host)
232
-                             ->useQuickMode($this->quick)
233
-                             ->lockTables($this->lockTables)
234
-                             ->dumpBlobsHexadecimal($this->hexBlob)
235
-                             ->useCompression($this->compress)
236
-                             ->useExtendedInsert($this->extendedInsert)
237
-                             ->dumpTables($this->tables)
238
-                             ->singleTransaction($this->singleTransaction)
239
-                             ->dumpDatabases($this->databases)
240
-                             ->ignoreTables($this->ignoreTables)
241
-                             ->produceFilePerTable($this->filePerTable)
242
-                             ->dumpNoData($this->noData)
243
-                             ->dumpStructureOnly($this->structureOnly)
244
-                             ->dumpTo($this->getDumpTarget($target));
231
+                                ->useHost($this->host)
232
+                                ->useQuickMode($this->quick)
233
+                                ->lockTables($this->lockTables)
234
+                                ->dumpBlobsHexadecimal($this->hexBlob)
235
+                                ->useCompression($this->compress)
236
+                                ->useExtendedInsert($this->extendedInsert)
237
+                                ->dumpTables($this->tables)
238
+                                ->singleTransaction($this->singleTransaction)
239
+                                ->dumpDatabases($this->databases)
240
+                                ->ignoreTables($this->ignoreTables)
241
+                                ->produceFilePerTable($this->filePerTable)
242
+                                ->dumpNoData($this->noData)
243
+                                ->dumpStructureOnly($this->structureOnly)
244
+                                ->dumpTo($this->getDumpTarget($target));
245 245
             // if compression is active and commands can be piped
246 246
             if ($this->isHandlingCompression($target)) {
247 247
                 $this->executable->compressOutput($target->getCompression());
Please login to merge, or discard this patch.