/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Http/Exception
NameSizeModeActions
BadRequestException.php12070644editdlrm
ConflictException.php11990644editdlrm
ForbiddenException.php12020644editdlrm
GoneException.php11870644editdlrm
HttpException.php18850644editdlrm
InternalErrorException.php11590644editdlrm
InvalidCsrfTokenException.php12580644editdlrm
MethodNotAllowedException.php12270644editdlrm
MissingControllerException.php10450644editdlrm
NotAcceptableException.php12160644editdlrm
NotFoundException.php12010644editdlrm
NotImplementedException.php8220644editdlrm
RedirectException.php26430644editdlrm
ServiceUnavailableException.php12310644editdlrm
UnauthorizedException.php12110644editdlrm
UnavailableForLegalReasonsException.php12600644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Http/Exception/HttpException.php (1885B)
*/ protected $headers = []; /** * Set a single HTTP response header. * * @param string $header Header name * @param array|string|null $value Header value * @return void */ public function setHeader(string $header, $value = null): void { $this->headers[$header] = $value; } /** * Sets HTTP response headers. * * @param array $headers Array of header name and value pairs. * @return void */ public function setHeaders(array $headers): void { $this->headers = $headers; } /** * Returns array of response headers. * * @return array */ public function getHeaders(): array { return $this->headers; } }