BetterReflectionTest\Reflection\Adapter\ReflectionObjectTest::coreReflectionMethodNamesProvider PHP Method

coreReflectionMethodNamesProvider() public method

    public function coreReflectionMethodNamesProvider()
    {
        $methods = get_class_methods(CoreReflectionObject::class);
        return array_combine($methods, array_map(function ($i) {
            return [$i];
        }, $methods));
    }