Fix incorrect docblock

This commit is contained in:
Adrien Crivelli 2018-10-05 11:18:21 +10:00
parent 1e5be30290
commit 5e5be142f6
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
1 changed files with 2 additions and 2 deletions

View File

@ -325,7 +325,7 @@ class LookupRef
* Excel Function: * Excel Function:
* =OFFSET(cellAddress, rows, cols, [height], [width]) * =OFFSET(cellAddress, rows, cols, [height], [width])
* *
* @param null|array|string $cellAddress The reference from which you want to base the offset. Reference must refer to a cell or * @param null|string $cellAddress The reference from which you want to base the offset. Reference must refer to a cell or
* range of adjacent cells; otherwise, OFFSET returns the #VALUE! error value. * range of adjacent cells; otherwise, OFFSET returns the #VALUE! error value.
* @param mixed $rows The number of rows, up or down, that you want the upper-left cell to refer to. * @param mixed $rows The number of rows, up or down, that you want the upper-left cell to refer to.
* Using 5 as the rows argument specifies that the upper-left cell in the reference is * Using 5 as the rows argument specifies that the upper-left cell in the reference is
@ -348,7 +348,7 @@ class LookupRef
$columns = Functions::flattenSingleValue($columns); $columns = Functions::flattenSingleValue($columns);
$height = Functions::flattenSingleValue($height); $height = Functions::flattenSingleValue($height);
$width = Functions::flattenSingleValue($width); $width = Functions::flattenSingleValue($width);
if ($cellAddress == null) { if ($cellAddress === null) {
return 0; return 0;
} }