Latte\Runtime\Template::__call PHP Method

__call() public method

Deprecation:
public __call ( $name, $args )
    public function __call($name, $args)
    {
        trigger_error("Invoking filters via \$template->{$name}(\$vars) is deprecated, use (\$vars|{$name})", E_USER_DEPRECATED);
        return call_user_func_array($this->filters->{$name}, $args);
    }