feat: add apache_response_headers() function (#530)

This commit is contained in:
Kévin Dunglas
2024-01-31 12:34:30 +01:00
committed by GitHub
parent 3d9f344a50
commit 5a8e5f9518
6 changed files with 139 additions and 17 deletions

View File

@@ -13,9 +13,22 @@ function frankenphp_finish_request(): bool {}
*/
function fastcgi_finish_request(): bool {}
function frankenphp_request_headers(): array {}
/**
* @alias frankenphp_request_headers
*/
function apache_request_headers(): array {}
/**
* @alias apache_request_headers
* @alias frankenphp_response_headers
*/
function getallheaders(): array {}
function frankenphp_response_headers(): array|bool {}
/**
* @alias frankenphp_response_headers
*/
function apache_response_headers(): array|bool {}