Skip to content

Commit

Permalink
Make $requestId not nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
pavog authored Oct 24, 2023
1 parent 6775a1d commit 7bb590b
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 7bb590b

Please sign in to comment.