element->setAttribute("rel", $rel); return $this; } public function type($type) { $this->element->setAttribute("type", $type); return $this; } public function title($title) { $this->element->setAttribute("title", $title); return $this; } public function href($href) { $this->element->setAttribute("href", $href); return $this; } }