Skip to content

Commit

Permalink
Update code-style 💻
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Mar 20, 2022
1 parent fe07643 commit 05f5ad5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Illuminate\Database\Schema\Builder;
use Illuminate\Support\Facades\Schema;

return new class extends Migration {
return new class () extends Migration {
use HasTable;

public function up()
Expand Down
18 changes: 9 additions & 9 deletions src/Services/Logger.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ public static function save(Request $request): void
}

protected static function store(
?string $name,
string $method,
string $scheme,
string $host,
int|string|null $port,
string $path,
?string $name,
string $method,
string $scheme,
string $host,
int|string|null $port,
string $path,
array|string|null $query,
array $payload,
array $headers,
?string $ip
array $payload,
array $headers,
?string $ip
): void {
HttpLog::create(compact(
'name',
Expand Down

0 comments on commit 05f5ad5

Please sign in to comment.