Completed
Push — fix-github-action ( c263b3 )
by Christian
02:09
created
tests/N98/Magento/Command/Customer/CreateCommandTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,8 +62,8 @@
 block discarded – undo
62 62
         // We mock the DialogHelper
63 63
         $dialog = $this->createMock('N98\Util\Console\Helper\ParameterHelper', ['askPassword']);
64 64
         $dialog->expects($this->at(0))
65
-               ->method('askPassword')
66
-               ->willReturn(true); // The user confirms
65
+                ->method('askPassword')
66
+                ->willReturn(true); // The user confirms
67 67
 
68 68
         // We override the standard helper with our mock
69 69
         $command->getHelperSet()->set($dialog, 'parameter');
Please login to merge, or discard this patch.
src/N98/Magento/Command/Customer/DeleteCommand.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -225,7 +225,7 @@
 block discarded – undo
225 225
             if (count($filterAttributes) === 0) {
226 226
                 $output->writeln(
227 227
                     '<warning>No filter was specified. To delete all customer, ' .
228
-                             'add the --all option</warning>'
228
+                                'add the --all option</warning>'
229 229
                 );
230 230
 
231 231
                 return 1;
Please login to merge, or discard this patch.