Completed
Push — master ( 1eb0a8...2b0b10 )
by Joshua
10s
created
src/Console/Scheduling/LogEvent.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,11 +26,11 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/LaravelScheduleLoggerServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.