Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Marks old and unused reader classes as deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
froschdesign committed Mar 2, 2019
1 parent 7311028 commit 0c48e73
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Reader/AbstractEntry.php
Expand Up @@ -13,6 +13,9 @@
use DOMElement;
use DOMXPath;

/**
* @deprecated This (abstract) class is deprecated. Use Zend\Feed\Reader\Entry\AbstractEntry instead.
*/
abstract class AbstractEntry
{
/**
Expand Down
3 changes: 3 additions & 0 deletions src/Reader/AbstractFeed.php
Expand Up @@ -13,6 +13,9 @@
use DOMElement;
use DOMXPath;

/**
* @deprecated This (abstract) class is deprecated. Use \Zend\Feed\Reader\Feed\AbstractFeed instead.
*/
abstract class AbstractFeed implements Feed\FeedInterface
{
/**
Expand Down
5 changes: 5 additions & 0 deletions src/Reader/Collection.php
Expand Up @@ -11,6 +11,11 @@

use ArrayObject;

/**
* @deprecated This class is deprecated. Use the concret collection classes
* \Zend\Feed\Reader\Collection\Author and \Zend\Feed\Reader\Collection\Category
* or the generic class \Zend\Feed\Reader\Collection\Collection instead
*/
class Collection extends ArrayObject
{
}

0 comments on commit 0c48e73

Please sign in to comment.