rmrevin\yii\fontawesome\component\UnorderedList::render PHP Метод

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

Устаревший:
public render ( string | null $tag = null, array $options = [] ) : string
$tag string | null
$options array
Результат string
    public function render($tag = null, $options = [])
    {
        $tag = empty($tag) ? empty($this->tag) ? static::$defaultTag : $this->tag : $tag;
        $options = array_merge($this->options, $options);
        $items = $this->items;
        return Html::tag($tag, implode($items), $options);
    }