@@ -10,7 +10,7 @@ |
||
10 | 10 | */ |
11 | 11 | public function up(): void |
12 | 12 | { |
13 | - Schema::create('laraclient_logs', function (Blueprint $table) { |
|
13 | + Schema::create('laraclient_logs', function(Blueprint $table) { |
|
14 | 14 | $table->id(); |
15 | 15 | $table->string('endpoint'); |
16 | 16 | $table->string('method'); |
@@ -41,7 +41,7 @@ |
||
41 | 41 | */ |
42 | 42 | protected function registerRoutes(): void |
43 | 43 | { |
44 | - Route::group($this->routeConfiguration(), function () { |
|
44 | + Route::group($this->routeConfiguration(), function() { |
|
45 | 45 | $this->loadRoutesFrom(__DIR__.'/../routes/web.php'); |
46 | 46 | }); |
47 | 47 | } |