statusCode; } /** * Set this exception's HTTP response headers * * @param array $headers * * @return $this */ public function setHeaders(array $headers) { $this->headers = $headers; return $this; } /** * Set/Add a HTTP response header * * @param string $name * @param string $value * * @return $this */ public function setHeader($name, $value) { $this->headers[$name] = $value; return $this; } /** * Return this exception's HTTP response headers * * @return array An array where each key is a header name and the value its value */ public function getHeaders() { return $this->headers ?: array(); } }