summaryrefslogtreecommitdiff
path: root/ext/standard/tests/general_functions/bug71891.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/general_functions/bug71891.phpt')
-rw-r--r--ext/standard/tests/general_functions/bug71891.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/tests/general_functions/bug71891.phpt b/ext/standard/tests/general_functions/bug71891.phpt
index b1f7e200d8..4de58f2c29 100644
--- a/ext/standard/tests/general_functions/bug71891.phpt
+++ b/ext/standard/tests/general_functions/bug71891.phpt
@@ -4,10 +4,10 @@ Bug #71891 (header_register_callback() and register_shutdown_function())
<?php
header_register_callback(function () {
- echo 'header';
- register_shutdown_function(function () {
- echo 'shutdown';
- });
+ echo 'header';
+ register_shutdown_function(function () {
+ echo 'shutdown';
+ });
});
?>
--EXPECT--