Timber\Core::__call PHP Метод

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

This is helpful for twig to return properties and methods see: https://github.com/fabpot/Twig/issues/2
public __call ( $field, $args ) : mixed
Результат mixed
    public function __call($field, $args)
    {
        return $this->__get($field);
    }