1--TEST-- 2ReflectionClass::getMethods() does not contain property hooks 3--FILE-- 4<?php 5 6class Test { 7 public $a { get {} set {} } 8} 9 10var_dump((new ReflectionClass(Test::class))->getMethods()); 11 12?> 13--EXPECT-- 14array(0) { 15} 16