--TEST-- Bug #77772: ReflectionClass::getMethods(null) doesn't work --FILE-- getMethods(null) as $method) { var_dump($method->getName()); } foreach ($rc->getProperties(null) as $prop) { var_dump($prop->getName()); } ?> --EXPECT-- string(6) "method" string(4) "prop"