From 7bb590b84a973736f694763140eb0fa76eb1d352 Mon Sep 17 00:00:00 2001 From: Paul Vogel Date: Tue, 24 Oct 2023 12:10:21 +0200 Subject: [PATCH] Make $requestId not nullable --- src/Communication/Request.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Communication/Request.php b/src/Communication/Request.php index f0b0710..e8c1dab 100644 --- a/src/Communication/Request.php +++ b/src/Communication/Request.php @@ -11,7 +11,7 @@ */ class Request extends Message implements RequestInterface { - protected ?string $requestId = null; + protected string $requestId; /** * Request constructor. @@ -32,4 +32,4 @@ public function getRequestId(): string { return $this->requestId; } -} \ No newline at end of file +}