Symfony\Component\ClassLoader\ApcClassLoader::__call PHP 메소드

__call() 공개 메소드

Passes through all unknown calls onto the decorated object.
public __call ( $method, $args )
    public function __call($method, $args)
    {
        return call_user_func_array(array($this->decorated, $method), $args);
    }