@@ -1526,7 +1526,7 @@ public function getStyles()
15261526 /**
15271527 * Get style for cell.
15281528 *
1529- * @param AddressRange|array< int> |CellAddress|int|string $cellCoordinate
1529+ * @param AddressRange|array{0: int, 1: int, 2: int, 3: int}|array{0: int, 1: int} |CellAddress|int|string $cellCoordinate
15301530 * A simple string containing a cell address like 'A1' or a cell range like 'A1:E10'
15311531 * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
15321532 * or a CellAddress or AddressRange object.
@@ -1873,7 +1873,7 @@ public function getColumnBreaks()
18731873 /**
18741874 * Set merge on a cell range.
18751875 *
1876- * @param AddressRange|array< int> |string $range A simple string containing a Cell range like 'A1:E10'
1876+ * @param AddressRange|array{0: int, 1: int, 2: int, 3: int}|array{0: int, 1: int} |string $range A simple string containing a Cell range like 'A1:E10'
18771877 * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
18781878 * or an AddressRange.
18791879 * @param string $behaviour How the merged cells should behave.
@@ -2029,7 +2029,7 @@ public function mergeCellsByColumnAndRow($columnIndex1, $row1, $columnIndex2, $r
20292029 /**
20302030 * Remove merge on a cell range.
20312031 *
2032- * @param AddressRange|array< int> |string $range A simple string containing a Cell range like 'A1:E10'
2032+ * @param AddressRange|array{0: int, 1: int, 2: int, 3: int}|array{0: int, 1: int} |string $range A simple string containing a Cell range like 'A1:E10'
20332033 * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
20342034 * or an AddressRange.
20352035 *
@@ -2106,7 +2106,7 @@ public function setMergeCells(array $mergeCells): static
21062106 /**
21072107 * Set protection on a cell or cell range.
21082108 *
2109- * @param AddressRange|array< int> |CellAddress|int|string $range A simple string containing a Cell range like 'A1:E10'
2109+ * @param AddressRange|array{0: int, 1: int, 2: int, 3: int}|array{0: int, 1: int} |CellAddress|int|string $range A simple string containing a Cell range like 'A1:E10'
21102110 * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
21112111 * or a CellAddress or AddressRange object.
21122112 * @param string $password Password to unlock the protection
@@ -2157,7 +2157,7 @@ public function protectCellsByColumnAndRow($columnIndex1, $row1, $columnIndex2,
21572157 /**
21582158 * Remove protection on a cell or cell range.
21592159 *
2160- * @param AddressRange|array< int> |CellAddress|int|string $range A simple string containing a Cell range like 'A1:E10'
2160+ * @param AddressRange|array{0: int, 1: int, 2: int, 3: int}|array{0: int, 1: int} |CellAddress|int|string $range A simple string containing a Cell range like 'A1:E10'
21612161 * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
21622162 * or a CellAddress or AddressRange object.
21632163 *
@@ -2225,7 +2225,7 @@ public function getAutoFilter()
22252225 /**
22262226 * Set AutoFilter.
22272227 *
2228- * @param AddressRange|array< int> |AutoFilter|string $autoFilterOrRange
2228+ * @param AddressRange|array{0: int, 1: int, 2: int, 3: int}|array{0: int, 1: int} |AutoFilter|string $autoFilterOrRange
22292229 * A simple string containing a Cell range like 'A1:E10' is permitted for backward compatibility
22302230 * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
22312231 * or an AddressRange.
@@ -3041,7 +3041,7 @@ public function setSelectedCell($coordinate): static
30413041 /**
30423042 * Select a range of cells.
30433043 *
3044- * @param AddressRange|array< int> |CellAddress|int|string $coordinate A simple string containing a Cell range like 'A1:E10'
3044+ * @param AddressRange|array{0: int, 1: int, 2: int, 3: int}|array{0: int, 1: int} |CellAddress|int|string $coordinate A simple string containing a Cell range like 'A1:E10'
30453045 * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
30463046 * or a CellAddress or AddressRange object.
30473047 *
0 commit comments