Completed
Push — develop ( 71cc1a...2380e2 )
by Christian
23s
created
src/N98/Magento/Command/Database/DumpCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -397,7 +397,7 @@
 block discarded – undo
397 397
         $mysqlClientToolConnectionString = $database->getMysqlClientToolConnectionString();
398 398
 
399 399
         $excludeTablesUserInput = $this->excludeTables($input, $output); // Unprefixed
400
-        $stripTablesUserInput = $this->stripTables($input, $output);     // Unprefixed
400
+        $stripTablesUserInput = $this->stripTables($input, $output); // Unprefixed
401 401
 
402 402
         // Structure dump part (for stripped tables)
403 403
         $tablesForStructureDump = $stripTablesUserInput;
Please login to merge, or discard this patch.
tests/N98/Util/Console/Helper/DatabaseHelperTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -379,7 +379,7 @@
 block discarded – undo
379 379
                 [$this->equalTo('SET FOREIGN_KEY_CHECKS = 1;')]
380 380
             )
381 381
             ->willReturnOnConsecutiveCalls(
382
-                $this->returnValue(1),                            // SET FOREIGN_KEY_CHECKS = 0;
382
+                $this->returnValue(1), // SET FOREIGN_KEY_CHECKS = 0;
383 383
                 $this->throwException(new PDOException('Drop failed')), // DROP VIEW problem_view
384 384
                 $this->returnValue(1)                             // SET FOREIGN_KEY_CHECKS = 1;
385 385
             );
Please login to merge, or discard this patch.