Bootstrap\View\Helper\BootstrapNavbarHelper::divider PHP Method

divider() public method

Add a divider to the navbar or to a menu.
public divider ( array $options = [] )
$options array
    public function divider(array $options = [])
    {
        $options = $this->addClass($options, 'divider');
        $options['role'] = 'separator';
        return $this->Html->tag('li', '', $options);
    }