Completed
Pull Request — master (#149)
by
unknown
09:50
created
src/Backup/Source/Mysqldump.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -254,23 +254,23 @@
 block discarded – undo
254 254
     {
255 255
         $executable = new Executable\Mysqldump($this->pathToMysqldump);
256 256
         $executable->credentials($this->user, $this->password)
257
-                   ->useHost($this->host)
258
-                   ->usePort($this->port)
259
-                   ->useQuickMode($this->quick)
260
-                   ->lockTables($this->lockTables)
261
-                   ->dumpBlobsHexadecimal($this->hexBlob)
262
-                   ->addGTIDStatement($this->gtidPurged)
263
-                   ->useCompression($this->compress)
264
-                   ->useExtendedInsert($this->extendedInsert)
265
-                   ->dumpTables($this->tables)
266
-                   ->singleTransaction($this->singleTransaction)
267
-                   ->dumpDatabases($this->databases)
268
-                   ->ignoreTables($this->ignoreTables)
269
-                   ->produceFilePerTable($this->filePerTable)
270
-                   ->dumpNoData($this->noData)
271
-                   ->dumpRoutines($this->routines)
272
-                   ->dumpStructureOnly($this->structureOnly)
273
-                   ->dumpTo($this->getDumpTarget($target));
257
+                    ->useHost($this->host)
258
+                    ->usePort($this->port)
259
+                    ->useQuickMode($this->quick)
260
+                    ->lockTables($this->lockTables)
261
+                    ->dumpBlobsHexadecimal($this->hexBlob)
262
+                    ->addGTIDStatement($this->gtidPurged)
263
+                    ->useCompression($this->compress)
264
+                    ->useExtendedInsert($this->extendedInsert)
265
+                    ->dumpTables($this->tables)
266
+                    ->singleTransaction($this->singleTransaction)
267
+                    ->dumpDatabases($this->databases)
268
+                    ->ignoreTables($this->ignoreTables)
269
+                    ->produceFilePerTable($this->filePerTable)
270
+                    ->dumpNoData($this->noData)
271
+                    ->dumpRoutines($this->routines)
272
+                    ->dumpStructureOnly($this->structureOnly)
273
+                    ->dumpTo($this->getDumpTarget($target));
274 274
         // if compression is active and commands can be piped
275 275
         if ($this->isHandlingCompression($target)) {
276 276
             $executable->compressOutput($target->getCompression());
Please login to merge, or discard this patch.