JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrheaders = $config['headers']; } if (isset($config['body'])) { $this->body = $config['body']; } if (isset($config['code'])) { $this->code = (int) $config['code']; } } /** * Возвращает массив заголовков ответа. * * @return array Массив заголовков ответа */ public function getHeaders(): array { return $this->headers; } /** * Возвращает тело ответа. * * @return mixed Тело ответа */ public function getBody(): mixed { return $this->body; } /** * Возвращает HTTP код ответа. * * @return int HTTP код ответа */ public function getCode(): int { return $this->code; } }