From 59083e9f0cc429b5219064066c5095c41714873a Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Fri, 1 Sep 2017 21:56:42 +0200 Subject: [PATCH] Fixes CS --- src/Illuminate/Console/Application.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Illuminate/Console/Application.php b/src/Illuminate/Console/Application.php index 777904667fe1..d11f9ce7c23e 100755 --- a/src/Illuminate/Console/Application.php +++ b/src/Illuminate/Console/Application.php @@ -10,8 +10,8 @@ use Symfony\Component\Console\Input\ArrayInput; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Process\PhpExecutableFinder; -use Symfony\Component\Console\Output\ConsoleOutput; use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\ConsoleOutput; use Symfony\Component\Console\Output\BufferedOutput; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Application as SymfonyApplication; @@ -82,7 +82,7 @@ public function run(InputInterface $input = null, OutputInterface $output = null if ($output === null) { $output = new ConsoleOutput(); } - + $commandName = $this->getCommandName($input); $this->events->fire(