summaryrefslogtreecommitdiff
path: root/sapi/apache2handler/php_functions.stub.php
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-09-19 14:35:37 +0200
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-09-19 16:22:18 +0200
commitf088aec6cb6b1e2566dac968d46615864d2a0f93 (patch)
tree41159e5a763bc2762af37cc152789f0cb421c9d1 /sapi/apache2handler/php_functions.stub.php
parent40e8c7c90b1715a661f0a7056883d99198da18fe (diff)
downloadphp-git-f088aec6cb6b1e2566dac968d46615864d2a0f93.tar.gz
Fix UNKNOWN default value of apache_note()
Closes GH-6167
Diffstat (limited to 'sapi/apache2handler/php_functions.stub.php')
-rw-r--r--sapi/apache2handler/php_functions.stub.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache2handler/php_functions.stub.php b/sapi/apache2handler/php_functions.stub.php
index 391600be6c..93955c7181 100644
--- a/sapi/apache2handler/php_functions.stub.php
+++ b/sapi/apache2handler/php_functions.stub.php
@@ -13,7 +13,7 @@ function getallheaders(): array {}
function apache_response_headers(): array {}
-function apache_note(string $note_name, string $note_value = UNKNOWN): string|false {}
+function apache_note(string $note_name, ?string $note_value = null): string|false {}
function apache_setenv(string $variable, string $value, bool $walk_to_top = false): bool {}