Make client name and version nullable in ClientRequest

This commit is contained in:
netkas 2024-12-12 12:58:00 -05:00
parent f0624e71d1
commit d2119df824
2 changed files with 4 additions and 4 deletions

View file

@ -73,12 +73,12 @@
return $this->requestBody;
}
public function getClientName(): string
public function getClientName(): ?string
{
return $this->clientName;
}
public function getClientVersion(): string
public function getClientVersion(): ?string
{
return $this->clientVersion;
}