@@ -34,7 +34,7 @@ |
||
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 | } |
@@ -19,7 +19,7 @@ |
||
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 { |