| 1 | | <?php |
|---|
| 2 | | |
|---|
| 3 | | /* |
|---|
| 4 | | * This file is part of the sfFeed2 package. |
|---|
| 5 | | * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com> |
|---|
| 6 | | * (c) 2004-2007 Francois Zaninotto <francois.zaninotto@symfony-project.com> |
|---|
| 7 | | * |
|---|
| 8 | | * For the full copyright and license information, please view the LICENSE |
|---|
| 9 | | * file that was distributed with this source code. |
|---|
| 10 | | */ |
|---|
| 11 | | |
|---|
| 12 | | /** |
|---|
| 13 | | * |
|---|
| 14 | | * @package sfFeed2 |
|---|
| 15 | | * @author Fabien Potencier <fabien.potencier@symfony-project.com> |
|---|
| 16 | | * @author Francois Zaninotto <francois.zaninotto@symfony-project.com> |
|---|
| 17 | | */ |
|---|
| 18 | | class sfRss201Feed extends sfRssFeed |
|---|
| 19 | | { |
|---|
| 20 | | protected |
|---|
| 21 | | $version = "2.01"; |
|---|
| 22 | | |
|---|
| 23 | | } |
|---|
| 24 | | |
|---|
| | 1 | <?php |
|---|
| | 2 | |
|---|
| | 3 | /* |
|---|
| | 4 | * This file is part of the sfFeed2 package. |
|---|
| | 5 | * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com> |
|---|
| | 6 | * (c) 2004-2007 Francois Zaninotto <francois.zaninotto@symfony-project.com> |
|---|
| | 7 | * |
|---|
| | 8 | * For the full copyright and license information, please view the LICENSE |
|---|
| | 9 | * file that was distributed with this source code. |
|---|
| | 10 | */ |
|---|
| | 11 | |
|---|
| | 12 | /** |
|---|
| | 13 | * |
|---|
| | 14 | * @package sfFeed2 |
|---|
| | 15 | * @author Fabien Potencier <fabien.potencier@symfony-project.com> |
|---|
| | 16 | * @author Francois Zaninotto <francois.zaninotto@symfony-project.com> |
|---|
| | 17 | */ |
|---|
| | 18 | class sfRss201Feed extends sfRssFeed |
|---|
| | 19 | { |
|---|
| | 20 | protected |
|---|
| | 21 | $version = "2.0"; |
|---|
| | 22 | |
|---|
| | 23 | } |
|---|
| | 24 | |
|---|