summaryrefslogtreecommitdiff
path: root/Zend/tests/temporary_cleaning_015.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/temporary_cleaning_015.phpt')
-rw-r--r--Zend/tests/temporary_cleaning_015.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/temporary_cleaning_015.phpt b/Zend/tests/temporary_cleaning_015.phpt
index 7690abba76..f5e115faa9 100644
--- a/Zend/tests/temporary_cleaning_015.phpt
+++ b/Zend/tests/temporary_cleaning_015.phpt
@@ -3,12 +3,12 @@ Attempt to free invalid structure (result of ROPE_INIT is not a zval)
--FILE--
<?php
set_error_handler(function () {
- throw new Exception();
+ throw new Exception();
});
$a = [];
$b = "";
try {
- echo "$a$b\n";
+ echo "$a$b\n";
} catch (Exception $ex) {
}
?>