Completed
Push — master ( 3b347d...adc690 )
by Sebastian
03:08
created
src/Backup/Source/Mysqldump.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -236,21 +236,21 @@
 block discarded – undo
236 236
     {
237 237
         $executable = new Executable\Mysqldump($this->pathToMysqldump);
238 238
         $executable->credentials($this->user, $this->password)
239
-                   ->useHost($this->host)
240
-                   ->useQuickMode($this->quick)
241
-                   ->lockTables($this->lockTables)
242
-                   ->dumpBlobsHexadecimal($this->hexBlob)
243
-                   ->addGTIDStatement($this->gtidPurged)
244
-                   ->useCompression($this->compress)
245
-                   ->useExtendedInsert($this->extendedInsert)
246
-                   ->dumpTables($this->tables)
247
-                   ->singleTransaction($this->singleTransaction)
248
-                   ->dumpDatabases($this->databases)
249
-                   ->ignoreTables($this->ignoreTables)
250
-                   ->produceFilePerTable($this->filePerTable)
251
-                   ->dumpNoData($this->noData)
252
-                   ->dumpStructureOnly($this->structureOnly)
253
-                   ->dumpTo($this->getDumpTarget($target));
239
+                    ->useHost($this->host)
240
+                    ->useQuickMode($this->quick)
241
+                    ->lockTables($this->lockTables)
242
+                    ->dumpBlobsHexadecimal($this->hexBlob)
243
+                    ->addGTIDStatement($this->gtidPurged)
244
+                    ->useCompression($this->compress)
245
+                    ->useExtendedInsert($this->extendedInsert)
246
+                    ->dumpTables($this->tables)
247
+                    ->singleTransaction($this->singleTransaction)
248
+                    ->dumpDatabases($this->databases)
249
+                    ->ignoreTables($this->ignoreTables)
250
+                    ->produceFilePerTable($this->filePerTable)
251
+                    ->dumpNoData($this->noData)
252
+                    ->dumpStructureOnly($this->structureOnly)
253
+                    ->dumpTo($this->getDumpTarget($target));
254 254
         // if compression is active and commands can be piped
255 255
         if ($this->isHandlingCompression($target)) {
256 256
             $executable->compressOutput($target->getCompression());
Please login to merge, or discard this patch.