_parent = $parent; $this->_columnIndex = $columnIndex; } /** * Destructor */ public function __destruct() { unset($this->_parent); } /** * Get column index * * @return int */ public function getColumnIndex() { return $this->_columnIndex; } /** * Get cell iterator * * @return PHPExcel_Worksheet_CellIterator */ public function getCellIterator() { return new PHPExcel_Worksheet_ColumnCellIterator($this->_parent, $this->_columnIndex); } }