Kohana_Twig::bind PHP Method

bind() public method

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