Passed
Pull Request — main (#1)
by Christian
02:23
created
migrations/2023_02_24_000000_create_laraclient_logs_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
src/LaraClientServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.