Revert "Update src/Network/GuzzleResponse.php"

This reverts commit 79e667b3
This commit is contained in:
Philipp
2020-10-11 23:24:40 +02:00
parent 7a8baf1eea
commit ef06fab744

View File

@@ -89,7 +89,12 @@ class GuzzleResponse extends Response implements IHTTPResult, ResponseInterface
public function getContentType()
{
$contentTypes = $this->getHeader('Content-Type') ?? [];
return array_pop($contentTypes) ?? '';
$countTypes = count($contentTypes);
if ($countTypes > 0) {
return $contentTypes[$countTypes - 1];
} else {
return '';
}
}
/** {@inheritDoc} */