123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\DB\Tree;
- /**
- * TODO implements iterators
- *
- * @deprecated 102.0.0 Not used anymore.
- */
- class NodeSet implements \Iterator, \Countable
- {
- /**
- * @var Node[]
- */
- private $_nodes;
- /**
- * @var int
- */
- private $_current;
- /**
- * @var int
- */
- private $_currentNode;
- /**
- * @var int
- */
- private $count;
- /**
- * Constructor
- *
- * @deprecated 102.0.0
- */
- public function __construct()
- {
- $this->_nodes = [];
- $this->_current = 0;
- $this->_currentNode = 0;
- $this->count = 0;
- }
- /**
- * @param Node $node
- * @return int
- *
- * @deprecated 102.0.0
- */
- public function addNode(Node $node)
- {
- $this->_nodes[$this->_currentNode] = $node;
- $this->count++;
- return ++$this->_currentNode;
- }
- /**
- * @return int
- *
- * @deprecated 102.0.0
- */
- public function count()
- {
- return $this->count;
- }
- /**
- * @return bool
- *
- * @deprecated 102.0.0
- */
- public function valid()
- {
- return isset($this->_nodes[$this->_current]);
- }
- /**
- * @return false|int
- *
- * @deprecated 102.0.0
- */
- public function next()
- {
- if ($this->_current > $this->_currentNode) {
- return false;
- } else {
- return $this->_current++;
- }
- }
- /**
- * @return int
- *
- * @deprecated 102.0.0
- */
- public function key()
- {
- return $this->_current;
- }
- /**
- * @return Node
- *
- * @deprecated 102.0.0
- */
- public function current()
- {
- return $this->_nodes[$this->_current];
- }
- /**
- * @return void
- *
- * @deprecated 102.0.0
- */
- public function rewind()
- {
- $this->_current = 0;
- }
- }
|