Source of file RSS2.php

Size: 1,053 Bytes - Last Modified: 2017-08-13T05:38:53+02:00

C:/xampp/htdocs/PodTube/src/Feeds/RSS2.php

12345678910111213141516171819202122232425262728293031323334353637
<?php

namespace FeedWriter;

/*
 * Copyright (C) 2012 Michael Bemmerl <mail@mx-server.de>
 *
 * This file is part of the "Universal Feed Writer" project.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

/**
 * Wrapper for creating RSS2 feeds
 *
 * @package     UniversalFeedWriter
 */
class RSS2 extends Feed {
	/**
	 * {@inheritdoc}
	 */
	public function __construct(){
		parent::__construct(Feed::RSS2);
	}
}