From 3fef30f9f03583bd5534461ea438559686dec90e Mon Sep 17 00:00:00 2001 From: Application-drop-up Date: Tue, 13 May 2025 18:48:44 +0900 Subject: [PATCH] fix: fix-typo --- src/Response/Elasticsearch.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Response/Elasticsearch.php b/src/Response/Elasticsearch.php index 51a77a02b..6fb4caef1 100644 --- a/src/Response/Elasticsearch.php +++ b/src/Response/Elasticsearch.php @@ -138,7 +138,7 @@ public function asArray(): array return $this->asArray; } throw new UnknownContentTypeException(sprintf( - "Cannot deserialize the reponse as array with Content-Type: %s", + "Cannot deserialize the response as array with Content-Type: %s", $contentType )); } @@ -171,7 +171,7 @@ public function asObject(): object return $this->asObject; } throw new UnknownContentTypeException(sprintf( - "Cannot deserialize the reponse as object with Content-Type: %s", + "Cannot deserialize the response as object with Content-Type: %s", $contentType )); }