Completed
Push — master ( 8b003e...b7d954 )
by Eric
13:17 queued 08:20
created
app/Console/Kernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         //          ->hourly();
35 35
 
36 36
         if (substr(Carbon::now(), 0, 10) === $this->date) {
37
-            $schedule->call(function () {
37
+            $schedule->call(function() {
38 38
                 Mail::to('[email protected]')->send(new HelloUser());
39 39
             })->at('08:00');
40 40
         }
Please login to merge, or discard this patch.
app/Providers/AppServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      */
20 20
     public function boot()
21 21
     {
22
-        View::composer('*', function ($view) {
22
+        View::composer('*', function($view) {
23 23
             if (Auth::user()) {
24 24
                 $view->with('user', Auth::user());
25 25
             } else {
Please login to merge, or discard this patch.