Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Helldar committed Mar 20, 2022
2 parents dcd1eae + a6461c9 commit 0ca229e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
3 changes: 2 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
version: 2
updates:
- package-ecosystem: github-actions
-
package-ecosystem: github-actions
directory: /
schedule:
interval: daily
Expand Down
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 0ca229e

Please sign in to comment.