summaryrefslogtreecommitdiff
path: root/platform/www/vendor/openpsa/universalfeedcreator/lib/Creator/RSSCreator20.php
blob: fb39efe61984053ff06bf716b94acf4f1269c90e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

/**
 * RSSCreator20 is a FeedCreator that implements RDF Site Summary (RSS) 2.0.
 *
 * @see     http://backend.userland.com/rss
 * @since   1.3
 * @author  Kai Blankenhorn <kaib@bitfolge.de>
 */
class RSSCreator20 extends RSSCreator091
{

    /**
     * RSSCreator20 constructor.
     */
    public function __construct()
    {
        parent::__construct();
        parent::_setRSSVersion("2.0");
    }

}