Restore CellReferenceHelper.php

This commit is contained in:
oleibman
2024-01-02 00:09:46 -08:00
committed by GitHub
parent c4b934a91d
commit fc56282827
+1 -1
View File
@@ -24,7 +24,7 @@ class CellReferenceHelper
$this->numberOfRows = $numberOfRows;
// Get coordinate of $beforeCellAddress
[$beforeColumn, $beforeRow] = \PhpOffice\PhpSpreadsheet\Cell\Coordinate::coordinateFromString($beforeCellAddress);
[$beforeColumn, $beforeRow] = Coordinate::coordinateFromString($beforeCellAddress);
$this->beforeColumn = Coordinate::columnIndexFromString($beforeColumn);
$this->beforeRow = (int) $beforeRow;
}