We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4b98d2 commit 67767e1Copy full SHA for 67767e1
docs/topics/accessing-cells.md
@@ -385,7 +385,7 @@ $worksheet = $spreadsheet->getActiveSheet();
385
// Get the highest row and column numbers referenced in the worksheet
386
$highestRow = $worksheet->getHighestRow(); // e.g. 10
387
$highestColumn = $worksheet->getHighestColumn(); // e.g 'F'
388
-$highestColumnIndex = \PhpOffice\PhpSpreadsheet\Cell\Cell::columnIndexFromString($highestColumn); // e.g. 5
+$highestColumnIndex = \PhpOffice\PhpSpreadsheet\Cell\Coordinate::columnIndexFromString($highestColumn); // e.g. 5
389
390
echo '<table>' . "\n";
391
for ($row = 1; $row <= $highestRow; ++$row) {
0 commit comments