@@ -2,6 +2,6 @@ |
||
2 | 2 | |
3 | 3 | use Illuminate\Support\Facades\Route; |
4 | 4 | |
5 | -Route::get('/', function () { |
|
5 | +Route::get('/', function() { |
|
6 | 6 | return view('welcome'); |
7 | 7 | }); |
@@ -3,6 +3,6 @@ |
||
3 | 3 | use Illuminate\Foundation\Inspiring; |
4 | 4 | use Illuminate\Support\Facades\Artisan; |
5 | 5 | |
6 | -Artisan::command('inspire', function () { |
|
6 | +Artisan::command('inspire', function() { |
|
7 | 7 | $this->comment(Inspiring::quote()); |
8 | 8 | })->purpose('Display an inspiring quote')->hourly(); |
@@ -8,12 +8,12 @@ |
||
8 | 8 | |
9 | 9 | return Application::configure(basePath: $APP_BASE_PATH ?? default_skeleton_path()) |
10 | 10 | ->withRouting( |
11 | - web: __DIR__.'/../routes/web.php', |
|
12 | - commands: __DIR__.'/../routes/console.php', |
|
11 | + web: __DIR__ . '/../routes/web.php', |
|
12 | + commands: __DIR__ . '/../routes/console.php', |
|
13 | 13 | ) |
14 | - ->withMiddleware(function (Middleware $middleware) { |
|
14 | + ->withMiddleware(function(Middleware $middleware) { |
|
15 | 15 | // |
16 | 16 | }) |
17 | - ->withExceptions(function (Exceptions $exceptions) { |
|
17 | + ->withExceptions(function(Exceptions $exceptions) { |
|
18 | 18 | // |
19 | 19 | })->create(); |