Skip to content

Commit

Permalink
Fixes CS
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro committed Sep 1, 2017
1 parent d97dbc5 commit 59083e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/Console/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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(
Expand Down

0 comments on commit 59083e9

Please sign in to comment.