@@ -26,11 +26,11 @@  | 
                                                    ||
| 26 | 26 | */  | 
                                                        
| 27 | 27 | public function registerScheduleLogger($command)  | 
                                                        
| 28 | 28 |      { | 
                                                        
| 29 | -        $this->before(function () use ($command) { | 
                                                        |
| 29 | +        $this->before(function() use ($command) { | 
                                                        |
| 30 | 30 |              app()->make('laravel-schedulelogger')->start($command); | 
                                                        
| 31 | 31 | });  | 
                                                        
| 32 | 32 | |
| 33 | -        $this->after(function () use ($command) { | 
                                                        |
| 33 | +        $this->after(function() use ($command) { | 
                                                        |
| 34 | 34 |              app()->make('laravel-schedulelogger')->end($command); | 
                                                        
| 35 | 35 | });  | 
                                                        
| 36 | 36 | }  | 
                                                        
@@ -32,7 +32,7 @@  | 
                                                    ||
| 32 | 32 | */  | 
                                                        
| 33 | 33 | public function register()  | 
                                                        
| 34 | 34 |      { | 
                                                        
| 35 | -        $this->app->singleton('laravel-schedulelogger', function () { | 
                                                        |
| 35 | +        $this->app->singleton('laravel-schedulelogger', function() { | 
                                                        |
| 36 | 36 | return new \PendoNL\LaravelScheduleLogger\LaravelScheduleLogger();  | 
                                                        
| 37 | 37 | });  | 
                                                        
| 38 | 38 | }  |