You are here

abstract class AbstractCollection in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-feed/src/Reader/Collection/AbstractCollection.php \Zend\Feed\Reader\Collection\AbstractCollection

Hierarchy

Expanded class hierarchy of AbstractCollection

File

vendor/zendframework/zend-feed/src/Reader/Collection/AbstractCollection.php, line 14

Namespace

Zend\Feed\Reader\Collection
View source
abstract class AbstractCollection extends ArrayObject {

  /**
   * Return a simple array of the most relevant slice of
   * the collection values. For example, feed categories contain
   * the category name, domain/URI, and other data. This method would
   * merely return the most useful data - i.e. the category names.
   *
   * @return array
   */
  public abstract function getValues();

}

Members

Namesort descending Modifiers Type Description Overrides
AbstractCollection::getValues abstract public function Return a simple array of the most relevant slice of the collection values. For example, feed categories contain the category name, domain/URI, and other data. This method would merely return the most useful data - i.e. the category names. 2