mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-30 03:59:11 +00:00
Minor update in docblocks for row/column isEmpty() definitions
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user