D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
app
/
Libs
/
Sdk
/
Communication
/
Filename :
ResponseHeaderBuilder.php
back
Copy
<?php namespace App\Libs\Sdk\Communication; /** * Class ResponseHeaderBuilder * * @package OnlinePayments\Sdk\Communication */ class ResponseHeaderBuilder { /** @var string */ private string $headerString = ''; /** @var array|null */ private ?array $headers = null; /** @var string|null */ private ?string $contentType = null; /** * @param string $data */ public function append(string $data): void { $this->headerString .= $data; $this->headers = null; } /** * @return array */ public function getHeaders(): array { if (is_null($this->headers)) { $this->headers = HttpHeaderHelper::parseRawHeaders(explode("\r\n", $this->headerString)); } return $this->headers; } /** * @return string|null */ public function getContentType(): ?string { if (is_null($this->contentType)) { $headers = $this->getHeaders(); foreach ($headers as $headerKey => $headerValue) { if (strtolower($headerKey) === 'content-type') { $this->contentType = $headerValue; break; } } } return $this->contentType; } }