Completed
Push — master ( e61662...273c09 )
by Sebastian
06:26
created
src/Backup/Source/Mysqldump.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -245,22 +245,22 @@
 block discarded – undo
245 245
     {
246 246
         $executable = new Executable\Mysqldump($this->pathToMysqldump);
247 247
         $executable->credentials($this->user, $this->password)
248
-                   ->useHost($this->host)
249
-                   ->usePort($this->port)
250
-                   ->useQuickMode($this->quick)
251
-                   ->lockTables($this->lockTables)
252
-                   ->dumpBlobsHexadecimal($this->hexBlob)
253
-                   ->addGTIDStatement($this->gtidPurged)
254
-                   ->useCompression($this->compress)
255
-                   ->useExtendedInsert($this->extendedInsert)
256
-                   ->dumpTables($this->tables)
257
-                   ->singleTransaction($this->singleTransaction)
258
-                   ->dumpDatabases($this->databases)
259
-                   ->ignoreTables($this->ignoreTables)
260
-                   ->produceFilePerTable($this->filePerTable)
261
-                   ->dumpNoData($this->noData)
262
-                   ->dumpStructureOnly($this->structureOnly)
263
-                   ->dumpTo($this->getDumpTarget($target));
248
+                    ->useHost($this->host)
249
+                    ->usePort($this->port)
250
+                    ->useQuickMode($this->quick)
251
+                    ->lockTables($this->lockTables)
252
+                    ->dumpBlobsHexadecimal($this->hexBlob)
253
+                    ->addGTIDStatement($this->gtidPurged)
254
+                    ->useCompression($this->compress)
255
+                    ->useExtendedInsert($this->extendedInsert)
256
+                    ->dumpTables($this->tables)
257
+                    ->singleTransaction($this->singleTransaction)
258
+                    ->dumpDatabases($this->databases)
259
+                    ->ignoreTables($this->ignoreTables)
260
+                    ->produceFilePerTable($this->filePerTable)
261
+                    ->dumpNoData($this->noData)
262
+                    ->dumpStructureOnly($this->structureOnly)
263
+                    ->dumpTo($this->getDumpTarget($target));
264 264
         // if compression is active and commands can be piped
265 265
         if ($this->isHandlingCompression($target)) {
266 266
             $executable->compressOutput($target->getCompression());
Please login to merge, or discard this patch.