BetterReflectionTest\Reflection\Adapter\ReflectionParameterTest::coreReflectionParameterNamesProvider PHP Method

coreReflectionParameterNamesProvider() public method

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