@@ -26,7 +26,7 @@ |
||
26 | 26 | */ |
27 | 27 | public static function initBundledComposer(string $magentoRootDir) |
28 | 28 | { |
29 | - if (! self::$composer instanceof Composer) { |
|
29 | + if (!self::$composer instanceof Composer) { |
|
30 | 30 | $composerApplication = new Application(); |
31 | 31 | $composerApplication->setAutoExit(false); |
32 | 32 |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | } |
31 | 31 | |
32 | 32 | $storeCode = $input->getArgument('store'); |
33 | - $interaction = ! $input->getOption('no-interaction'); |
|
33 | + $interaction = !$input->getOption('no-interaction'); |
|
34 | 34 | |
35 | 35 | /** @var $questionHelper QuestionHelper */ |
36 | 36 | $questionHelper = $this->getHelper('question'); |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | $question |
48 | 48 | ); |
49 | 49 | |
50 | - if (! $shouldContinue) { |
|
50 | + if (!$shouldContinue) { |
|
51 | 51 | return self::INVALID; |
52 | 52 | } |
53 | 53 | } |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | $question |
84 | 84 | ); |
85 | 85 | |
86 | - if (! $shouldRemove) { |
|
86 | + if (!$shouldRemove) { |
|
87 | 87 | continue; |
88 | 88 | } |
89 | 89 | } |
@@ -277,7 +277,7 @@ |
||
277 | 277 | */ |
278 | 278 | protected function runMagerunCommand(InputInterface $input, OutputInterface $output, $commandString) |
279 | 279 | { |
280 | - $noInteraction = ! $input->getOption('no-interaction'); |
|
280 | + $noInteraction = !$input->getOption('no-interaction'); |
|
281 | 281 | $this->getApplication()->setAutoExit(false); |
282 | 282 | $commandString = $this->_replaceScriptVars($commandString); |
283 | 283 | $input = new StringInput($commandString); |