Fix wrong calculation of highest column (#856)

* Fix wrong calculation of highest column

issue #700

* Revert "Fix wrong calculation of highest column"

This reverts commit ef39af1cb6bac8f3101aa52a6336d736910d387b.

* Revert "Revert "Fix wrong calculation of highest column""

This reverts commit d13493ecbedf57253448438311c1d04a3ebdb65e.

* Revert Xlsx reader

* Fix indentation
This commit is contained in:
Benjamin Yau 2019-02-18 01:32:45 +08:00 committed by Mark Baker
parent a8642a2e9e
commit d2bbb6cd8e
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ class Cells
$columnList[] = Coordinate::columnIndexFromString($c);
}
return Coordinate::stringFromColumnIndex(max($columnList) + 1);
return Coordinate::stringFromColumnIndex(max($columnList));
}
/**