summaryrefslogtreecommitdiff
path: root/platform/www/vendor/openpsa/universalfeedcreator/lib/Element/FeedImage.php
blob: cc9df46aacd96583a9c046715919bea44411c99f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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;
}