url = $url; $this->title = $title; $this->link = $link; return $this; } /** * * @param type $description * @return Feed_XML_RSS_Image */ public function set_description($description) { $this->description = $description; return $this; } /** * * @param int $width * @return Feed_XML_RSS_Image */ public function set_width($width) { $this->width = (int) $width; return $this; } /** * * @param int $height * @return Feed_XML_RSS_Image */ public function set_height($height) { $this->height = (int) $height; return $this; } /** * * @return string */ public function get_url() { return $this->url; } /** * * @return string */ public function get_title() { return $this->title; } /** * * @return string */ public function get_link() { return $this->link; } /** * * @return string */ public function get_description() { return $this->description; } /** * * @return int */ public function get_width() { return $this->width; } /** * * @return int */ public function get_height() { return $this->height; } }