Skip to content

Commit 0ca229e

Browse files
author
Andrey Helldar
committed
Merge remote-tracking branch 'origin/main'
2 parents dcd1eae + a6461c9 commit 0ca229e

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
version: 2
22
updates:
3-
- package-ecosystem: github-actions
3+
-
4+
package-ecosystem: github-actions
45
directory: /
56
schedule:
67
interval: daily

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)