Completed
Pull Request — master (#341)
by Ema
02:29
created
src/MageApplication.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
         $dispatcher = new EventDispatcher();
47 47
         $this->setDispatcher($dispatcher);
48 48
 
49
-        $dispatcher->addListener(ConsoleEvents::EXCEPTION, function (ConsoleExceptionEvent $event) {
49
+        $dispatcher->addListener(ConsoleEvents::EXCEPTION, function(ConsoleExceptionEvent $event) {
50 50
             $output = $event->getOutput();
51 51
             $command = $event->getCommand();
52 52
             $output->writeln(sprintf('Oops, exception thrown while running command <info>%s</info>', $command->getName()));
Please login to merge, or discard this patch.
src/Task/BuiltIn/FS/RemoveTask.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -53,11 +53,11 @@
 block discarded – undo
53 53
 
54 54
     protected function getRecursive()
55 55
     {
56
-      $options = $this->getOptions();
57
-      if (isset($options['recursive']) && boolval($options['recursive'])) {
58
-          return ' -fr';
59
-      }
56
+        $options = $this->getOptions();
57
+        if (isset($options['recursive']) && boolval($options['recursive'])) {
58
+            return ' -fr';
59
+        }
60 60
 
61
-      return '';
61
+        return '';
62 62
     }
63 63
 }
Please login to merge, or discard this patch.