From e1c898848f258bb0c647da0ccb17e41c6e7b2414 Mon Sep 17 00:00:00 2001 From: Patrick Collins Date: Fri, 22 Apr 2022 22:04:56 -0700 Subject: [PATCH] [contents.php] Fix incorrect reference to UnexpectedResponseException's responseBody. (#2677) --- lib/contents.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/contents.php b/lib/contents.php index c5c95371..4ceeb4cc 100644 --- a/lib/contents.php +++ b/lib/contents.php @@ -74,7 +74,7 @@ class UnexpectedResponseException extends \GetContentsException { } public function getResponseBody() { - return $this->responseBody(); + return $this->responseBody; } }