File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -6182,7 +6182,7 @@ static zend_result reflection_property_check_lazy_compatible(reflection_object *
61826182 return SUCCESS ;
61836183}
61846184
6185- /* {{{ Set property value withtout triggering initializer while skipping hooks if any */
6185+ /* {{{ Set property value without triggering initializer while skipping hooks if any */
61866186ZEND_METHOD (ReflectionProperty , setRawValueWithoutLazyInitialization )
61876187{
61886188 reflection_object * intern ;
Original file line number Diff line number Diff line change 11--TEST--
2- Reflection Bug #36434 (Properties from parent class fail to indetify their true origin)
2+ Reflection Bug #36434 (Properties from parent class fail to identify their true origin)
33--FILE--
44<?php
5- class ancester
5+ class ancestor
66{
7- public $ ancester = 0 ;
7+ public $ ancestor = 0 ;
88 function __construct ()
99 {
10- return $ this ->ancester ;
10+ return $ this ->ancestor ;
1111 }
1212}
13- class foo extends ancester
13+ class foo extends ancestor
1414{
1515 public $ bar = "1 " ;
1616 function __construct ()
@@ -28,4 +28,4 @@ foreach ($r->GetProperties() as $p)
2828?>
2929--EXPECT--
3030bar foo
31- ancester ancester
31+ ancestor ancestor
Original file line number Diff line number Diff line change 11--TEST--
2- Bug #62384 (Attempting to invoke a Closure more than once causes segfaul )
2+ Bug #62384 (Attempting to invoke a Closure more than once causes segfault )
33--FILE--
44<?php
55
You can’t perform that action at this time.
0 commit comments