EzSystems\PlatformBehatBundle\Context\Argument\AnnotationArgumentResolver::resolveArguments PHP Метод

resolveArguments() публичный Метод

Symfony2Extension ArgumentResoler will convert service names to actual instances.
public resolveArguments ( ReflectionClass $classReflection, array $arguments = [] )
$classReflection ReflectionClass
$arguments array
    public function resolveArguments(ReflectionClass $classReflection, array $arguments = [])
    {
        $injArguments = $this->parseAnnotations($this->getMethodAnnotations($classReflection));
        if (!empty($injArguments)) {
            $arguments = [];
            foreach ($injArguments as $name => $service) {
                $arguments[$name] = $service;
            }
        }
        return $arguments;
    }