* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 */ declare(strict_types=1); namespace PrestaShop\Module\DistributionApiClient\Middleware; class CachedResponse { /** @var string[][] */ private $headers; /** @var string */ private $body; /** * @param string[][] $headers * @param string $body */ public function __construct(array $headers, string $body) { $this->headers = $headers; $this->body = $body; } /** * @return string[][] */ public function getHeaders(): array { return $this->headers; } public function getBody(): string { return $this->body; } }