url = $url; $this->title = $title; $this->link = $link; return $this; } /** * * @param type $description * @return FeedRSSImage */ public function setDescription($description) { $this->description = $description; return $this; } /** * * @param int $width * @return FeedRSSImage */ public function setWidth($width) { $this->width = (int) $width; return $this; } /** * * @param int $height * @return FeedRSSImage */ public function setHeight($height) { $this->height = (int) $height; return $this; } /** * * @return string */ public function getUrl() { return $this->url; } /** * * @return string */ public function getTitle() { return $this->title; } /** * * @return string */ public function getLink() { return $this->link; } /** * * @return string */ public function getDescription() { return $this->description; } /** * * @return int */ public function getWidth() { return $this->width; } /** * * @return int */ public function getHeight() { return $this->height; } }