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

coreReflectionMethodNamesProvider() public method

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