comparison vendor/zendframework/zend-feed/src/Reader/Collection.php @ 18:af1871eacc83

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:33:08 +0100
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
17:129ea1e6d783 18:af1871eacc83
1 <?php 1 <?php
2 /** 2 /**
3 * Zend Framework (http://framework.zend.com/) 3 * Zend Framework (http://framework.zend.com/)
4 * 4 *
5 * @link http://github.com/zendframework/zf2 for the canonical source repository 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) 6 * @copyright Copyright (c) 2005-2019 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License 7 * @license http://framework.zend.com/license/new-bsd New BSD License
8 */ 8 */
9 9
10 namespace Zend\Feed\Reader; 10 namespace Zend\Feed\Reader;
11 11
12 use ArrayObject; 12 use ArrayObject;
13 13
14 /**
15 * @deprecated This class is deprecated. Use the concrete collection classes
16 * \Zend\Feed\Reader\Collection\Author and \Zend\Feed\Reader\Collection\Category
17 * or the generic class \Zend\Feed\Reader\Collection\Collection instead.
18 */
14 class Collection extends ArrayObject 19 class Collection extends ArrayObject
15 { 20 {
16 } 21 }