/var/www/vhosts/nabawater/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet
NameSizeModeActions
AutoFilter/-0755rm
Drawing/-0755rm
AutoFilter.php354940644editdlrm
BaseDrawing.php104830644editdlrm
CellIterator.php12250644editdlrm
Column.php12850644editdlrm
ColumnCellIterator.php53940644editdlrm
ColumnDimension.php18860644editdlrm
ColumnIterator.php44500644editdlrm
Dimension.php29030644editdlrm
Drawing.php23340644editdlrm
HeaderFooter.php113720644editdlrm
HeaderFooterDrawing.php4460644editdlrm
Iterator.php14210644editdlrm
MemoryDrawing.php33480644editdlrm
PageMargins.php31140644editdlrm
PageSetup.php260960644editdlrm
Protection.php95570644editdlrm
Row.php14490644editdlrm
RowCellIterator.php59700644editdlrm
RowDimension.php18760644editdlrm
RowIterator.php36660644editdlrm
SheetView.php38480644editdlrm
Worksheet.php878510644editdlrm
Edit: /var/www/vhosts/nabawater/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Row.php (1449B)
worksheet = $worksheet; $this->rowIndex = $rowIndex; } /** * Destructor. */ public function __destruct() { unset($this->worksheet); } /** * Get row index. * * @return int */ public function getRowIndex() { return $this->rowIndex; } /** * Get cell iterator. * * @param string $startColumn The column address at which to start iterating * @param string $endColumn Optionally, the column address at which to stop iterating * * @return RowCellIterator */ public function getCellIterator($startColumn = 'A', $endColumn = null) { return new RowCellIterator($this->worksheet, $this->rowIndex, $startColumn, $endColumn); } /** * Returns bound worksheet. * * @return Worksheet */ public function getWorksheet() { return $this->worksheet; } }