Completed
Push — master ( c8d43c...43d1dd )
by Sebastian
02:49
created
src/Backup/Source/Mysqldump.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -263,24 +263,24 @@
 block discarded – undo
263 263
     {
264 264
         $executable = new Executable\Mysqldump($this->pathToMysqldump);
265 265
         $executable->credentials($this->user, $this->password)
266
-                   ->useHost($this->host)
267
-                   ->usePort($this->port)
268
-                   ->useProtocol($this->protocol)
269
-                   ->useQuickMode($this->quick)
270
-                   ->lockTables($this->lockTables)
271
-                   ->dumpBlobsHexadecimal($this->hexBlob)
272
-                   ->addGTIDStatement($this->gtidPurged)
273
-                   ->useCompression($this->compress)
274
-                   ->useExtendedInsert($this->extendedInsert)
275
-                   ->dumpTables($this->tables)
276
-                   ->singleTransaction($this->singleTransaction)
277
-                   ->dumpDatabases($this->databases)
278
-                   ->ignoreTables($this->ignoreTables)
279
-                   ->produceFilePerTable($this->filePerTable)
280
-                   ->dumpNoData($this->noData)
281
-                   ->dumpRoutines($this->routines)
282
-                   ->dumpStructureOnly($this->structureOnly)
283
-                   ->dumpTo($this->getDumpTarget($target));
266
+                    ->useHost($this->host)
267
+                    ->usePort($this->port)
268
+                    ->useProtocol($this->protocol)
269
+                    ->useQuickMode($this->quick)
270
+                    ->lockTables($this->lockTables)
271
+                    ->dumpBlobsHexadecimal($this->hexBlob)
272
+                    ->addGTIDStatement($this->gtidPurged)
273
+                    ->useCompression($this->compress)
274
+                    ->useExtendedInsert($this->extendedInsert)
275
+                    ->dumpTables($this->tables)
276
+                    ->singleTransaction($this->singleTransaction)
277
+                    ->dumpDatabases($this->databases)
278
+                    ->ignoreTables($this->ignoreTables)
279
+                    ->produceFilePerTable($this->filePerTable)
280
+                    ->dumpNoData($this->noData)
281
+                    ->dumpRoutines($this->routines)
282
+                    ->dumpStructureOnly($this->structureOnly)
283
+                    ->dumpTo($this->getDumpTarget($target));
284 284
         // if compression is active and commands can be piped
285 285
         if ($this->isHandlingCompression($target)) {
286 286
             $executable->compressOutput($target->getCompression());
Please login to merge, or discard this patch.