Author: Krzysztof Gzocha (krzysztof@propertyfinder.ae)
Inheritance: implements Countable, implements IteratorAggregate
 /**
  * @inheritDoc
  */
 public function addNamedItem($name, $item)
 {
     return parent::addNamedItem($name, $item);
 }
 /**
  * @return \ArrayIterator
  */
 public function getIterator()
 {
     $this->validateNumberOfCells();
     return parent::getIterator();
 }
 /**
  * @param CriteriaBuilderInterface[] $builders array or \Traversable object
  */
 public function __construct($builders = [])
 {
     parent::__construct($builders);
 }
 /**
  * @param CriteriaInterface[] $criteria array or \Traversable object
  */
 public function __construct($criteria = [])
 {
     parent::__construct($criteria);
 }