summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Gilliot <simon@gilliot.fr>2019-03-11 08:16:43 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2019-03-11 08:33:14 +0100
commit67799e07b8a54d8afc55301cf921305e59251a06 (patch)
tree1ef417261f758bc335ea021e35e7694bdf44e297
parent01fc69726d8366f282c44b107329a18ea78b749d (diff)
#413 DateTime::createFromFormat()
-rw-r--r--lib/Config/LegacyGuzzleResponse.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Config/LegacyGuzzleResponse.php b/lib/Config/LegacyGuzzleResponse.php
index d9f6102ee..9358eba15 100644
--- a/lib/Config/LegacyGuzzleResponse.php
+++ b/lib/Config/LegacyGuzzleResponse.php
@@ -81,6 +81,6 @@ class LegacyGuzzleResponse implements ResponseInterface
*/
public function getHeader($name)
{
- return $this->response->getHeader($name);
+ return current($this->response->getHeader($name));
}
}