web/lib/Zend/Stdlib/SplPriorityQueue.php
changeset 1230 68c69c656a2c
parent 808 6b6c2214f778
equal deleted inserted replaced
1229:5a6b6e770365 1230:68c69c656a2c
    12  * obtain it through the world-wide-web, please send an email
    12  * obtain it through the world-wide-web, please send an email
    13  * to license@zend.com so we can send you a copy immediately.
    13  * to license@zend.com so we can send you a copy immediately.
    14  *
    14  *
    15  * @category   Zend
    15  * @category   Zend
    16  * @package    Zend_Stdlib
    16  * @package    Zend_Stdlib
    17  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    17  * @copyright  Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
    18  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    18  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    19  */
    19  */
    20 
    20 
    21 if (version_compare(PHP_VERSION, '5.3.0', '<')) {
    21 if (version_compare(PHP_VERSION, '5.3.0', '<')) {
    22     /**
    22     /**
   379  * Also, provides predictable heap order for datums added with the same priority
   379  * Also, provides predictable heap order for datums added with the same priority
   380  * (i.e., they will be emitted in the same order they are enqueued).
   380  * (i.e., they will be emitted in the same order they are enqueued).
   381  *
   381  *
   382  * @category   Zend
   382  * @category   Zend
   383  * @package    Zend_Stdlib
   383  * @package    Zend_Stdlib
   384  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
   384  * @copyright  Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
   385  * @license    http://framework.zend.com/license/new-bsd     New BSD License
   385  * @license    http://framework.zend.com/license/new-bsd     New BSD License
   386  */
   386  */
   387 class Zend_Stdlib_SplPriorityQueue extends SplPriorityQueue implements Serializable
   387 class Zend_Stdlib_SplPriorityQueue extends SplPriorityQueue implements Serializable
   388 {
   388 {
   389     /**
   389     /**