@@ -141,8 +141,8 @@  | 
                                                    ||
| 141 | 141 | |
| 142 | 142 | $table = new Table($output);  | 
                                                        
| 143 | 143 | $table->setHeaders(['Version', 'Date Migrated', 'Description'])  | 
                                                        
| 144 | - ->setRows($rows)  | 
                                                        |
| 145 | - ->render();  | 
                                                        |
| 144 | + ->setRows($rows)  | 
                                                        |
| 145 | + ->render();  | 
                                                        |
| 146 | 146 | }  | 
                                                        
| 147 | 147 | |
| 148 | 148 | $executedUnavailableMigrations = $configuration->getUnavailableMigratedVersions();  | 
                                                        
@@ -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;  | 
                                                        
@@ -69,7 +69,7 @@  | 
                                                    ||
| 69 | 69 |          if (!$this->configuration) { | 
                                                        
| 70 | 70 | $conn = $this->getDatabaseConnection($input);  | 
                                                        
| 71 | 71 | |
| 72 | -            $outputWriter = new OutputWriter(function ($message) use ($output) { | 
                                                        |
| 72 | +            $outputWriter = new OutputWriter(function($message) use ($output) { | 
                                                        |
| 73 | 73 | return $output->writeln($message);  | 
                                                        
| 74 | 74 | });  | 
                                                        
| 75 | 75 | |