Neos\Flow\ObjectManagement\DependencyInjection\DependencyProxy::__call PHP Метод

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

Proxy magic call method which triggers the injection of the real dependency and returns the result of a call to the original method in the dependency
public __call ( string $methodName, array $arguments ) : mixed
$methodName string Name of the method to be called
$arguments array An array of arguments to be passed to the method
Результат mixed
    public function __call($methodName, array $arguments)
    {
        return call_user_func_array([$this->_activateDependency(), $methodName], $arguments);
    }