Completed
Push — feature/db-commands-view-handl... ( 4bee52...982364 )
by Christian
46s queued 26s
created
src/N98/Magento/Command/Database/DumpCommand.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -510,7 +510,7 @@
 block discarded – undo
510 510
         return $input->getOption('keep-definer')
511 511
             ? ''
512 512
             : ' | LANG=C LC_CTYPE=C LC_ALL=C sed -E '
513
-              . escapeshellarg('s/DEFINER[ ]*=[ ]*`[^`]+`@`[^`]+`/DEFINER=CURRENT_USER/g');
513
+                . escapeshellarg('s/DEFINER[ ]*=[ ]*`[^`]+`@`[^`]+`/DEFINER=CURRENT_USER/g');
514 514
     }
515 515
 
516 516
     /**
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.