Minor update in docblocks for row/column isEmpty() definitions

This commit is contained in:
MarkBaker
2023-01-28 16:50:47 +01:00
parent a950d1042b
commit 8a122fa165
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -85,8 +85,8 @@ class Column
* Possible Flag Values are:
* CellIterator::TREAT_NULL_VALUE_AS_EMPTY_CELL
* CellIterator::TREAT_EMPTY_STRING_AS_EMPTY_CELL
* @param int $startRow The row number at which to start iterating
* @param int $endRow Optionally, the row number at which to stop iterating
* @param int $startRow The row number at which to start checking if cells are empty.
* @param int $endRow Optionally, the row number at which to stop checking if cells are empty.
*/
public function isEmpty(int $definitionOfEmptyFlags = 0, $startRow = 1, $endRow = null): bool
{
+2 -2
View File
@@ -84,8 +84,8 @@ class Row
* Possible Flag Values are:
* CellIterator::TREAT_NULL_VALUE_AS_EMPTY_CELL
* CellIterator::TREAT_EMPTY_STRING_AS_EMPTY_CELL
* @param string $startColumn The column address at which to start iterating
* @param string $endColumn Optionally, the column address at which to stop iterating
* @param string $startColumn The column address at which to start checking if cells are empty
* @param string $endColumn Optionally, the column address at which to stop checking if cells are empty
*/
public function isEmpty(int $definitionOfEmptyFlags = 0, $startColumn = 'A', $endColumn = null): bool
{