3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
10 namespace Zend\Stdlib\ArrayObject
;
12 use ArrayObject
as PhpArrayObject
;
17 * Since we need to substitute an alternate ArrayObject implementation for
18 * versions > 5.3.3, we need to provide a stub for 5.3.3. This stub
19 * simply extends the PHP ArrayObject implementation, and provides default
20 * behavior in the constructor.
22 abstract class PhpLegacyCompatibility
extends PhpArrayObject
29 * @param string $iteratorClass
31 public function __construct($input = array(), $flags = self
::STD_PROP_LIST
, $iteratorClass = 'ArrayIterator')
33 parent
::__construct($input, $flags, $iteratorClass);