@@ -1389,7 +1389,7 @@ public function getStyles(): array
1389
1389
/**
1390
1390
* Get style for cell.
1391
1391
*
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
1393
1393
* A simple string containing a cell address like 'A1' or a cell range like 'A1:E10'
1394
1394
* or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
1395
1395
* or a CellAddress or AddressRange object.
@@ -1693,7 +1693,7 @@ public function getColumnBreaks(): array
1693
1693
/**
1694
1694
* Set merge on a cell range.
1695
1695
*
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'
1697
1697
* or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
1698
1698
* or an AddressRange.
1699
1699
* @param string $behaviour How the merged cells should behave.
@@ -1818,7 +1818,7 @@ public function mergeCellBehaviour(Cell $cell, string $upperLeft, string $behavi
1818
1818
/**
1819
1819
* Remove merge on a cell range.
1820
1820
*
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'
1822
1822
* or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
1823
1823
* or an AddressRange.
1824
1824
*
@@ -1869,7 +1869,7 @@ public function setMergeCells(array $mergeCells): static
1869
1869
/**
1870
1870
* Set protection on a cell or cell range.
1871
1871
*
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'
1873
1873
* or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
1874
1874
* or a CellAddress or AddressRange object.
1875
1875
* @param string $password Password to unlock the protection
@@ -1892,7 +1892,7 @@ public function protectCells(AddressRange|CellAddress|int|string|array $range, s
1892
1892
/**
1893
1893
* Remove protection on a cell or cell range.
1894
1894
*
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'
1896
1896
* or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
1897
1897
* or a CellAddress or AddressRange object.
1898
1898
*
@@ -1950,7 +1950,7 @@ public function getAutoFilter(): AutoFilter
1950
1950
/**
1951
1951
* Set AutoFilter.
1952
1952
*
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
1954
1954
* A simple string containing a Cell range like 'A1:E10' is permitted for backward compatibility
1955
1955
* or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
1956
1956
* or an AddressRange.
@@ -2696,7 +2696,7 @@ public function setSelectedCell(string $coordinate): static
2696
2696
/**
2697
2697
* Select a range of cells.
2698
2698
*
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'
2700
2700
* or passing in an array of [$fromColumnIndex, $fromRow, $toColumnIndex, $toRow] (e.g. [3, 5, 6, 8]),
2701
2701
* or a CellAddress or AddressRange object.
2702
2702
*
0 commit comments