FeedImage.php 364 B

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