1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/reflection/tests/property_hooks/ReflectionClass_getMethods.phpt
2024-07-14 11:55:03 +02:00

16 lines
223 B
PHP

--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) {
}