Redaxscript\Html\HtmlAbstract::append PHP Method

append() public method

append to the html
Since: 2.6.0
public append ( string $html = null ) : Element
$html string html to append
return Element
    public function append($html = null)
    {
        $this->_html .= $html;
        return $this;
    }