dockerwiki/content/vendor/openpsa/universalfeedcreator/lib/Element/FeedImage.php

21 lines
364 B
PHP
Raw Normal View History

2021-10-26 13:02:53 +02:00
<?php
/**
* A FeedImage may be added to a FeedCreator feed.
*
* @author Kai Blankenhorn <kaib@bitfolge.de>
* @since 1.3
*/
class FeedImage extends HtmlDescribable
{
/**
* Mandatory attributes of an image.
*/
public $title, $url, $link;
/**
* Optional attributes of an image.
*/
public $width, $height, $description;
}