From 81f994336a6c5ca610e0420f6685311a62ff9bda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D0=B0=D1=81=D1=82=D0=B0=D1=81=D0=B8=D1=8F=20?= =?UTF-8?q?=D0=A1=D0=BA=D1=83=D0=BB=D1=8C=D1=81=D0=BA=D0=B0=D1=8F?= Date: Wed, 30 Oct 2024 18:29:16 +0300 Subject: [PATCH] getLastResponse(): ?Response --- src/Manticoresearch/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Manticoresearch/Client.php b/src/Manticoresearch/Client.php index 9130136d..4f20fd55 100755 --- a/src/Manticoresearch/Client.php +++ b/src/Manticoresearch/Client.php @@ -418,7 +418,7 @@ public function request(Request $request, array $params = []): Response { * * @return Response */ - public function getLastResponse(): Response { + public function getLastResponse(): ?Response { return $this->lastResponse; }