Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Iterator.php
Go to the documentation of this file.
1 <?php
7 
13 class Iterator extends \ArrayIterator
14 {
20  public function rewind()
21  {
22  $this->ksort();
23  parent::rewind();
24  }
25 }