'tag-list']; protected $tag = 'div'; public function addLink($content, $url): self { $this->content[] = new Link($content, $url); return $this; } public function hasContent(): bool { return ! empty($this->content); } protected function assemble() { $this->add(Html::wrapEach($this->content, 'li')); } }