@@ -21,7 +21,7 @@ |
||
| 21 | 21 | public function __construct(\Closure $closure = null) |
| 22 | 22 | { |
| 23 | 23 | if (null === $closure) { |
| 24 | - $closure = function ($message) { |
|
| 24 | + $closure = function($message) { |
|
| 25 | 25 | }; |
| 26 | 26 | } |
| 27 | 27 | $this->closure = $closure; |
@@ -79,7 +79,7 @@ |
||
| 79 | 79 | if (!$this->configuration) { |
| 80 | 80 | $conn = $this->getDatabaseConnection(); |
| 81 | 81 | |
| 82 | - $outputWriter = new OutputWriter(function ($message) use ($output) { |
|
| 82 | + $outputWriter = new OutputWriter(function($message) use ($output) { |
|
| 83 | 83 | return $output->writeln($message); |
| 84 | 84 | }); |
| 85 | 85 | |