This commit is contained in:
origami11@yandex.ru 2025-10-07 13:23:16 +03:00
commit 69370bdf38
2 changed files with 3 additions and 3 deletions

View file

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