php-src/ext/reflection/tests/property_hooks/ReflectionClass_getMethods.phpt
Ilija Tovilo 780a8280d2
[RFC] Property hooks (#13455)
RFC: https://wiki.php.net/rfc/property-hooks

Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>
2024-07-14 11:55:03 +02:00

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