fix: Инициализация параметров

This commit is contained in:
System Administrator 2025-10-07 12:07:59 +03:00
parent 48269bd424
commit a58f18c836
2 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@ class Url {
$this->parts = $parts;
}
function addQueryParam(string $key, string $value): void {
function addQueryParam(string $key, ?string $value): void {
$this->parts[$key] = $value;
}