Completed
Pull Request — develop (#1301)
by Christian
21s
created
src/N98/Magento/Command/ScriptCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -277,7 +277,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/N98/Magento/Command/Config/SearchCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
         }
85 85
 
86 86
         foreach ($structureElementIterator as $structureElement) {
87
-            if (mb_stripos((string)$structureElement->getLabel(), $searchTerm) !== false) {
87
+            if (mb_stripos((string) $structureElement->getLabel(), $searchTerm) !== false) {
88 88
                 $this->resultBuilder->add($structureElement, $pathLabel);
89 89
             }
90 90
             $elementPathLabel = $pathLabel . ' / ' . $structureElement->getLabel();
Please login to merge, or discard this patch.