1*572dd708SAndreas Gohr<?php 2*572dd708SAndreas Gohr 3*572dd708SAndreas Gohr/** 4*572dd708SAndreas Gohr * A FeedImage may be added to a FeedCreator feed. 5*572dd708SAndreas Gohr * 6*572dd708SAndreas Gohr * @author Kai Blankenhorn <kaib@bitfolge.de> 7*572dd708SAndreas Gohr * @since 1.3 8*572dd708SAndreas Gohr * @package de.bitfolge.feedcreator 9*572dd708SAndreas Gohr */ 10*572dd708SAndreas Gohrclass FeedImage extends HtmlDescribable 11*572dd708SAndreas Gohr{ 12*572dd708SAndreas Gohr /** 13*572dd708SAndreas Gohr * Mandatory attributes of an image. 14*572dd708SAndreas Gohr */ 15*572dd708SAndreas Gohr public $title, $url, $link; 16*572dd708SAndreas Gohr 17*572dd708SAndreas Gohr /** 18*572dd708SAndreas Gohr * Optional attributes of an image. 19*572dd708SAndreas Gohr */ 20*572dd708SAndreas Gohr public $width, $height, $description; 21*572dd708SAndreas Gohr} 22