Ergo\View\Template::offsetSet PHP Method

offsetSet() public method

See also: http://www.php.net/~helly/php/ext/spl/interfaceArrayAccess.html
public offsetSet ( $offset, $value )
    public function offsetSet($offset, $value)
    {
        if (is_null($offset)) {
            throw new \InvalidArgumentException('Append not supported for template');
        }
        $this->_vars[$offset] = $value;
    }