setLogin($login); } } /** * Set the buddy login * * @param string $login Buddy login * @return \FML\ManiaCode\AddBuddy|static */ public function setLogin($login) { $this->login = (string)$login; return $this; } /** * @see \FML\ManiaCode\Element::render() */ public function render(\DOMDocument $domDocument) { $xmlElement = $domDocument->createElement($this->tagName); $loginElement = $domDocument->createElement('login', $this->login); $xmlElement->appendChild($loginElement); return $xmlElement; } }