[contents.php] Fix incorrect reference to UnexpectedResponseException's responseBody. (#2677)

This commit is contained in:
Patrick Collins 2022-04-22 22:04:56 -07:00 committed by GitHub
parent 46a356b0b2
commit e1c898848f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ class UnexpectedResponseException extends \GetContentsException {
}
public function getResponseBody() {
return $this->responseBody();
return $this->responseBody;
}
}