16 lines
223 B
Plaintext
16 lines
223 B
Plaintext
|
|
--TEST--
|
||
|
|
ReflectionClass::getMethods() does not contain property hooks
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
class Test {
|
||
|
|
public $a { get {} set {} }
|
||
|
|
}
|
||
|
|
|
||
|
|
var_dump((new ReflectionClass(Test::class))->getMethods());
|
||
|
|
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
array(0) {
|
||
|
|
}
|