Skip to content

Commit 05f5ad5

Browse files
committed
Update code-style 💻
1 parent fe07643 commit 05f5ad5

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

‎database/migrations/2022_03_20_005417_create_http_logs_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Illuminate\Database\Schema\Builder;
99
use Illuminate\Support\Facades\Schema;
1010

11-
return new class extends Migration {
11+
return new class () extends Migration {
1212
use HasTable;
1313

1414
public function up()

‎src/Services/Logger.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ public static function save(Request $request): void
2626
}
2727

2828
protected static function store(
29-
?string $name,
30-
string $method,
31-
string $scheme,
32-
string $host,
33-
int|string|null $port,
34-
string $path,
29+
?string $name,
30+
string $method,
31+
string $scheme,
32+
string $host,
33+
int|string|null $port,
34+
string $path,
3535
array|string|null $query,
36-
array $payload,
37-
array $headers,
38-
?string $ip
36+
array $payload,
37+
array $headers,
38+
?string $ip
3939
): void {
4040
HttpLog::create(compact(
4141
'name',

0 commit comments

Comments
 (0)