Completed
Pull Request — master (#218)
by
unknown
02:57
created
src/Backup/Source/Mysqldump.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -324,25 +324,25 @@
 block discarded – undo
324 324
     {
325 325
         $executable = new Executable\Mysqldump($this->pathToMysqldump);
326 326
         $executable->credentials($this->user, $this->password)
327
-                   ->useHost($this->host)
328
-                   ->usePort($this->port)
329
-                   ->useProtocol($this->protocol)
330
-                   ->useQuickMode($this->quick)
331
-                   ->lockTables($this->lockTables)
332
-                   ->dumpBlobsHexadecimal($this->hexBlob)
333
-                   ->addGTIDStatement($this->gtidPurged)
334
-                   ->useCompression($this->compress)
335
-                   ->useExtendedInsert($this->extendedInsert)
336
-                   ->dumpTables($this->tables)
337
-                   ->singleTransaction($this->singleTransaction)
338
-                   ->dumpDatabases($this->databases)
339
-                   ->ignoreTables($this->ignoreTables)
340
-                   ->produceFilePerTable($this->filePerTable)
341
-                   ->dumpNoData($this->noData)
342
-                   ->dumpRoutines($this->routines)
343
-                   ->skipTriggers($this->skipTriggers)
344
-                   ->dumpStructureOnly($this->structureOnly)
345
-                   ->dumpTo($this->getDumpTarget($target));
327
+                    ->useHost($this->host)
328
+                    ->usePort($this->port)
329
+                    ->useProtocol($this->protocol)
330
+                    ->useQuickMode($this->quick)
331
+                    ->lockTables($this->lockTables)
332
+                    ->dumpBlobsHexadecimal($this->hexBlob)
333
+                    ->addGTIDStatement($this->gtidPurged)
334
+                    ->useCompression($this->compress)
335
+                    ->useExtendedInsert($this->extendedInsert)
336
+                    ->dumpTables($this->tables)
337
+                    ->singleTransaction($this->singleTransaction)
338
+                    ->dumpDatabases($this->databases)
339
+                    ->ignoreTables($this->ignoreTables)
340
+                    ->produceFilePerTable($this->filePerTable)
341
+                    ->dumpNoData($this->noData)
342
+                    ->dumpRoutines($this->routines)
343
+                    ->skipTriggers($this->skipTriggers)
344
+                    ->dumpStructureOnly($this->structureOnly)
345
+                    ->dumpTo($this->getDumpTarget($target));
346 346
         // if compression is active and commands can be piped
347 347
         if ($this->isHandlingCompression($target)) {
348 348
             $executable->compressOutput($target->getCompression());
Please login to merge, or discard this patch.