File tree 3 files changed +8
-8
lines changed
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 *
6182
6182
return SUCCESS ;
6183
6183
}
6184
6184
6185
- /* {{{ Set property value withtout triggering initializer while skipping hooks if any */
6185
+ /* {{{ Set property value without triggering initializer while skipping hooks if any */
6186
6186
ZEND_METHOD (ReflectionProperty , setRawValueWithoutLazyInitialization )
6187
6187
{
6188
6188
reflection_object * intern ;
Original file line number Diff line number Diff line change 1
1
--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)
3
3
--FILE--
4
4
<?php
5
- class ancester
5
+ class ancestor
6
6
{
7
- public $ ancester = 0 ;
7
+ public $ ancestor = 0 ;
8
8
function __construct ()
9
9
{
10
- return $ this ->ancester ;
10
+ return $ this ->ancestor ;
11
11
}
12
12
}
13
- class foo extends ancester
13
+ class foo extends ancestor
14
14
{
15
15
public $ bar = "1 " ;
16
16
function __construct ()
@@ -28,4 +28,4 @@ foreach ($r->GetProperties() as $p)
28
28
?>
29
29
--EXPECT--
30
30
bar foo
31
- ancester ancester
31
+ ancestor ancestor
Original file line number Diff line number Diff line change 1
1
--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 )
3
3
--FILE--
4
4
<?php
5
5
You can’t perform that action at this time.
0 commit comments