_arrayMaps as $options) { $this->map()->add( $this->_makeItemFromOptions($options) ); } $this->_arrayMaps = array(); } /** * Adds an item (array based). Supports chaining. * * @param array $mapArray */ public function add($mapArray) { $this->_arrayMaps[] = $mapArray; return $this; } }