Skip to content

Commit fcc6f2d

Browse files
committed
Merge branch 'PHP-7.1'
2 parents 2b71c98 + 68d3501 commit fcc6f2d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+37
-37
lines changed

Zend/tests/bug72162.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ $var11 = new StdClass();
77
$var16 = error_reporting($var11);
88
?>
99
--EXPECTF--
10-
Catchable fatal error: Object of class stdClass could not be converted to string in %sbug72162.php on line %d
10+
Recoverable fatal error: Object of class stdClass could not be converted to string in %sbug72162.php on line %d

Zend/tests/class_properties_const.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ NULL
2222
Notice: Undefined property: A::$1 in %sclass_properties_const.php on line %d
2323
NULL
2424

25-
Catchable fatal error: Object of class Closure could not be converted to string in %sclass_properties_const.php on line %d
25+
Recoverable fatal error: Object of class Closure could not be converted to string in %sclass_properties_const.php on line %d

Zend/tests/exception_009.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ throw new my_exception;
2525

2626
?>
2727
--EXPECT--
28-
Catchable fatal error: Object of class stdClass could not be converted to string in Unknown on line 0
28+
Recoverable fatal error: Object of class stdClass could not be converted to string in Unknown on line 0

Zend/tests/instanceof_001.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ bool(true)
2626
bool(true)
2727
bool(false)
2828

29-
Catchable fatal error: Object of class stdClass could not be converted to string in %s on line %d
29+
Recoverable fatal error: Object of class stdClass could not be converted to string in %s on line %d

Zend/tests/objects_022.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $foo = new foo;
2525
$foo->testFoo(new foo);
2626
$foo->testBar(new bar);
2727
$foo->testBaz(new baz);
28-
$foo->testFoo(new stdClass); // Catchable fatal error
28+
$foo->testFoo(new stdClass); // Recoverable fatal error
2929

3030
?>
3131
--EXPECTF--

ext/gmp/tests/cast.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ string(2) "42"
1919
int(42)
2020
float(42)
2121

22-
Catchable fatal error: Object of class GMP could not be converted to boolean in %s on line %d
22+
Recoverable fatal error: Object of class GMP could not be converted to boolean in %s on line %d

ext/mbstring/tests/common.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function test_error_handler($err_no, $err_msg, $filename, $linenum, $vars) {
2020
512 => "User Warning", // E_USER_WARMING
2121
1024=> "User Notice", // E_USER_NOTICE
2222
2048=> "Strict Notice", // E_STRICT
23-
4096=> "Catchable fatal error", // E_RECOVERABLE_ERROR
23+
4096=> "Recoverable fatal error", // E_RECOVERABLE_ERROR
2424
);
2525

2626
if (!empty($debug)) {

ext/openssl/tests/bug38261.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ Warning: openssl_x509_parse() expects at least 1 parameter, 0 given in %sbug3826
3131
NULL
3232
bool(false)
3333

34-
Catchable fatal error: Object of class stdClass could not be converted to string in %sbug38261.php on line %d
34+
Recoverable fatal error: Object of class stdClass could not be converted to string in %sbug38261.php on line %d

ext/pcre/tests/preg_replace_error1.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ string(1) "a"
5555
Arg value is /[a-zA-Z]/
5656
string(1) "1"
5757

58-
Catchable fatal error: Object of class stdClass could not be converted to string in %spreg_replace_error1.php on line %d
58+
Recoverable fatal error: Object of class stdClass could not be converted to string in %spreg_replace_error1.php on line %d
5959

ext/pcre/tests/preg_replace_error2.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ Arg value is: Array
3333
Warning: preg_replace(): Parameter mismatch, pattern is a string while replacement is an array in %spreg_replace_error2.php on line %d
3434
bool(false)
3535

36-
Catchable fatal error: Object of class stdClass could not be converted to string in %spreg_replace_error2.php on line %d
36+
Recoverable fatal error: Object of class stdClass could not be converted to string in %spreg_replace_error2.php on line %d
3737

0 commit comments

Comments
 (0)