startRow = $startRow; $this->endRow = $endRow; $this->columns = $columns; } public function readCell($column, $row, $worksheetName = '') { if ($row >= $this->startRow) { if (in_array($column, $this->columns)) { return true; } } return false; } }