From: Roland Häder Date: Sun, 19 Jun 2022 12:06:20 +0000 (+0200) Subject: Ops, not here wanted. :-( X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ed3c53a5f891ee372097cf5233efee06ebfe3037;p=friendica.git Ops, not here wanted. :-( --- diff --git a/src/Network/HTTPClient/Capability/ICanHandleHttpResponses.php b/src/Network/HTTPClient/Capability/ICanHandleHttpResponses.php index e8cc43a3c7..b6f0c6f3e2 100644 --- a/src/Network/HTTPClient/Capability/ICanHandleHttpResponses.php +++ b/src/Network/HTTPClient/Capability/ICanHandleHttpResponses.php @@ -51,22 +51,21 @@ interface ICanHandleHttpResponses *@see MessageInterface::getHeader() * */ - public function getHeader(string $header): array; + public function getHeader(string $header); /** * Returns all headers - * @see MessageInterface::getHeaders() * + * @see MessageInterface::getHeaders() * @return string[][] */ - public function getHeaders(): array; + public function getHeaders(); /** * Check if a specified header exists - * @see MessageInterface::hasHeader() * + * @see MessageInterface::hasHeader() * @param string $field header field - * * @return boolean "true" if header exists */ public function inHeader(string $field): bool; @@ -78,7 +77,7 @@ interface ICanHandleHttpResponses * * @return string[][] associated header array */ - public function getHeaderArray(): array; + public function getHeaderArray(); /** * @return bool @@ -96,11 +95,12 @@ interface ICanHandleHttpResponses public function getRedirectUrl(): string; /** - * @see MessageInterface::getBody() + * Getter for body * + * @see MessageInterface::getBody() * @return string */ - public function getBody(): string; + public function getBody(); /** * @return boolean