Kohana_Twig::bind PHP Метод

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

This reference can be accessed as $ref within the view $view->bind('ref', $bar);
public bind ( $key, &$value ) : View
Результат View
    public function bind($key, &$value)
    {
        $this->_data[$key] =& $value;
        return $this;
    }