749ff5c809b88dd9098c074577e54fb71aed402b
[yaffs-website] / vendor / zendframework / zend-feed / src / Reader / Collection / AbstractCollection.php
1 <?php
2 /**
3  * Zend Framework (http://framework.zend.com/)
4  *
5  * @link      http://github.com/zendframework/zf2 for the canonical source repository
6  * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7  * @license   http://framework.zend.com/license/new-bsd New BSD License
8  */
9
10 namespace Zend\Feed\Reader\Collection;
11
12 use ArrayObject;
13
14 abstract class AbstractCollection extends ArrayObject
15 {
16     /**
17      * Return a simple array of the most relevant slice of
18      * the collection values. For example, feed categories contain
19      * the category name, domain/URI, and other data. This method would
20      * merely return the most useful data - i.e. the category names.
21      *
22      * @return array
23      */
24     abstract public function getValues();
25 }