]> git.mxchange.org Git - friendica.git/commitdiff
Ops, not here wanted. :-(
authorRoland Häder <roland@mxchange.org>
Sun, 19 Jun 2022 12:06:20 +0000 (14:06 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 19 Jun 2022 12:06:32 +0000 (14:06 +0200)
src/Network/HTTPClient/Capability/ICanHandleHttpResponses.php

index e8cc43a3c794343fa62251626ed8ebdf1858c3ef..b6f0c6f3e2b066f5db18f46a81299f3ede2cf3d4 100644 (file)
@@ -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