Bootstrap\View\Helper\BootstrapPanelHelper::end PHP Метод

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

End a panel. If $title is not null, the PanelHelper::footer functions is called with $title and $options arguments.
public end ( $title = null, array $options = [] )
$options array
    public function end($title = null, $options = [])
    {
        $this->_lastPanelClosed = true;
        $res = '';
        $res .= $this->_cleanCurrent();
        if ($title !== null) {
            $res .= $this->footer($title, $options);
        }
        $res .= '</div>';
        return $res;
    }