Completed
Push — master ( 4ee454...9c5484 )
by Christian
30s
created
src/N98/Magento/Command/Customer/DeleteCommand.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -226,7 +226,7 @@
 block discarded – undo
226 226
             if (count($filterAttributes) === 0) {
227 227
                 $output->writeln(
228 228
                     '<warning>No filter was specified. To delete all customer, ' .
229
-                             'add the --all option</warning>'
229
+                                'add the --all option</warning>'
230 230
                 );
231 231
 
232 232
                 return Command::FAILURE;
Please login to merge, or discard this patch.
src/N98/Magento/Command/Integration/ShowCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
             if (!isset($data[$settingArgument])) {
113 113
                 throw new \InvalidArgumentException('Unknown key: ' . $settingArgument);
114 114
             }
115
-            $output->writeln((string)$data[$settingArgument]);
115
+            $output->writeln((string) $data[$settingArgument]);
116 116
 
117 117
             return Command::SUCCESS;
118 118
         }
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
             if (!isset($data[$settingArgument])) {
130 130
                 throw new \InvalidArgumentException('Unknown key: ' . $settingArgument);
131 131
             }
132
-            $output->writeln((string)$this->infos[$settingArgument]);
132
+            $output->writeln((string) $this->infos[$settingArgument]);
133 133
         } else {
134 134
             $this->getHelper('table')
135 135
                 ->setHeaders(['name', 'value'])
Please login to merge, or discard this patch.