@@ -1389,7 +1389,7 @@ public function getStyles(): array
13891389 /**
13901390 * Get style for cell.
13911391 *
1392- * @param AddressRange<CellAddress>|array{0: int, 1: int, 2: int, 3: int}|array{0: int, 1: int}|CellAddress|int|string $cellCoordinate
1392+ * @param AddressRange<CellAddress>|AddressRange<int>|AddressRange<string>| array{0: int, 1: int, 2: int, 3: int}|array{0: int, 1: int}|CellAddress|int|string $cellCoordinate
13931393 * A simple string containing a cell address like 'A1' or a cell range like 'A1:E10'
13941394 * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
13951395 * or a CellAddress or AddressRange object.
@@ -1693,7 +1693,7 @@ public function getColumnBreaks(): array
16931693 /**
16941694 * Set merge on a cell range.
16951695 *
1696- * @param AddressRange<CellAddress>|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'
1696+ * @param AddressRange<CellAddress>|AddressRange<int>|AddressRange<string>| 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'
16971697 * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
16981698 * or an AddressRange.
16991699 * @param string $behaviour How the merged cells should behave.
@@ -1818,7 +1818,7 @@ public function mergeCellBehaviour(Cell $cell, string $upperLeft, string $behavi
18181818 /**
18191819 * Remove merge on a cell range.
18201820 *
1821- * @param AddressRange<CellAddress>|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'
1821+ * @param AddressRange<CellAddress>|AddressRange<int>|AddressRange<string>| 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'
18221822 * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
18231823 * or an AddressRange.
18241824 *
@@ -1869,7 +1869,7 @@ public function setMergeCells(array $mergeCells): static
18691869 /**
18701870 * Set protection on a cell or cell range.
18711871 *
1872- * @param AddressRange<CellAddress>|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'
1872+ * @param AddressRange<CellAddress>|AddressRange<int>|AddressRange<string>| 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'
18731873 * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
18741874 * or a CellAddress or AddressRange object.
18751875 * @param string $password Password to unlock the protection
@@ -1892,7 +1892,7 @@ public function protectCells(AddressRange|CellAddress|int|string|array $range, s
18921892 /**
18931893 * Remove protection on a cell or cell range.
18941894 *
1895- * @param AddressRange<CellAddress>|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'
1895+ * @param AddressRange<CellAddress>|AddressRange<int>|AddressRange<string>| 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'
18961896 * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
18971897 * or a CellAddress or AddressRange object.
18981898 *
@@ -1950,7 +1950,7 @@ public function getAutoFilter(): AutoFilter
19501950 /**
19511951 * Set AutoFilter.
19521952 *
1953- * @param AddressRange<CellAddress>|array{0: int, 1: int, 2: int, 3: int}|array{0: int, 1: int}|AutoFilter|string $autoFilterOrRange
1953+ * @param AddressRange<CellAddress>|AddressRange<int>|AddressRange<string>| array{0: int, 1: int, 2: int, 3: int}|array{0: int, 1: int}|AutoFilter|string $autoFilterOrRange
19541954 * A simple string containing a Cell range like 'A1:E10' is permitted for backward compatibility
19551955 * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
19561956 * or an AddressRange.
@@ -2696,7 +2696,7 @@ public function setSelectedCell(string $coordinate): static
26962696 /**
26972697 * Select a range of cells.
26982698 *
2699- * @param AddressRange<CellAddress>|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'
2699+ * @param AddressRange<CellAddress>|AddressRange<int>|AddressRange<string>| 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'
27002700 * or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
27012701 * or a CellAddress or AddressRange object.
27022702 *
0 commit comments