1<?php 2 3/** 4 * RSSCreator20 is a FeedCreator that implements RDF Site Summary (RSS) 2.0. 5 * 6 * @see http://backend.userland.com/rss 7 * @since 1.3 8 * @author Kai Blankenhorn <kaib@bitfolge.de> 9 * @package de.bitfolge.feedcreator 10 */ 11class RSSCreator20 extends RSSCreator091 12{ 13 14 /** 15 * RSSCreator20 constructor. 16 */ 17 public function __construct() 18 { 19 parent::__construct(); 20 parent::_setRSSVersion("2.0"); 21 } 22 23} 24