Skip to content

Commit

Permalink
Merge pull request #1 from pavog/patch-1
Browse files Browse the repository at this point in the history
Make $requestId not nullable
  • Loading branch information
matthi4s authored Oct 24, 2023
2 parents 6775a1d + 7bb590b commit f424c37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Communication/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/
class Request extends Message implements RequestInterface
{
protected ?string $requestId = null;
protected string $requestId;

/**
* Request constructor.
Expand All @@ -32,4 +32,4 @@ public function getRequestId(): string
{
return $this->requestId;
}
}
}

0 comments on commit f424c37

Please sign in to comment.