2010-08-30 07:49:44 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Zend Framework
|
|
|
|
*
|
|
|
|
* LICENSE
|
|
|
|
*
|
|
|
|
* This source file is subject to the new BSD license that is bundled
|
|
|
|
* with this package in the file LICENSE.txt.
|
|
|
|
* It is also available through the world-wide-web at this URL:
|
|
|
|
* http://framework.zend.com/license/new-bsd
|
|
|
|
* If you did not receive a copy of the license and are unable to
|
|
|
|
* obtain it through the world-wide-web, please send an email
|
|
|
|
* to license@zend.com so we can send you a copy immediately.
|
|
|
|
*
|
|
|
|
* @category Zend
|
|
|
|
* @package Zend_Feed_Writer
|
|
|
|
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
|
|
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
2011-01-03 09:37:50 +00:00
|
|
|
* @version $Id: Source.php 23484 2010-12-10 03:57:59Z mjh_ca $
|
2010-08-30 07:49:44 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
require_once 'Zend/Feed/Writer/Feed/FeedAbstract.php';
|
2011-01-03 09:37:50 +00:00
|
|
|
|
2010-08-30 07:49:44 +00:00
|
|
|
/**
|
|
|
|
* @category Zend
|
|
|
|
* @package Zend_Feed_Writer
|
|
|
|
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
|
|
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
|
|
*/
|
|
|
|
class Zend_Feed_Writer_Source extends Zend_Feed_Writer_Feed_FeedAbstract
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|