@@ -471,7 +471,7 @@ discard block |
||
471 | 471 | /** |
472 | 472 | * Set Columns to repeat at left. |
473 | 473 | * |
474 | - * @param array $pValue Containing start column and end column, empty array if option unset |
|
474 | + * @param string[] $pValue Containing start column and end column, empty array if option unset |
|
475 | 475 | * |
476 | 476 | * @return PageSetup |
477 | 477 | */ |
@@ -526,7 +526,7 @@ discard block |
||
526 | 526 | /** |
527 | 527 | * Set Rows to repeat at top. |
528 | 528 | * |
529 | - * @param array $pValue Containing start column and end column, empty array if option unset |
|
529 | + * @param string[] $pValue Containing start column and end column, empty array if option unset |
|
530 | 530 | * |
531 | 531 | * @return PageSetup |
532 | 532 | */ |
@@ -1172,7 +1172,7 @@ |
||
1172 | 1172 | * @param \PhpOffice\PhpSpreadsheet\Worksheet $pSheet \PhpOffice\PhpSpreadsheet\Worksheet |
1173 | 1173 | * @param array $pValues Array containing cells in a row |
1174 | 1174 | * @param int $pRow Row number (0-based) |
1175 | - * @param mixed $cellType eg: 'td' |
|
1175 | + * @param string $cellType eg: 'td' |
|
1176 | 1176 | * |
1177 | 1177 | * @throws \PhpOffice\PhpSpreadsheet\Writer\Exception |
1178 | 1178 | * |
@@ -1062,7 +1062,6 @@ |
||
1062 | 1062 | * @param \PhpOffice\PhpSpreadsheet\Shared\XMLWriter $objWriter XML Writer |
1063 | 1063 | * @param \PhpOffice\PhpSpreadsheet\Worksheet $pSheet Worksheet |
1064 | 1064 | * @param \PhpOffice\PhpSpreadsheet\Cell $pCellAddress Cell Address |
1065 | - * @param string[] $pStringTable String table |
|
1066 | 1065 | * @param string[] $pFlippedStringTable String table (flipped), for faster index searching |
1067 | 1066 | * |
1068 | 1067 | * @throws \PhpOffice\PhpSpreadsheet\Writer\Exception |
@@ -225,7 +225,7 @@ |
||
225 | 225 | break; |
226 | 226 | case DataType::TYPE_FORMULA: |
227 | 227 | $formulaValue = $cell->getValue(); |
228 | - if($this->getParentWriter()->getPreCalculateFormulas()) { |
|
228 | + if ($this->getParentWriter()->getPreCalculateFormulas()) { |
|
229 | 229 | try { |
230 | 230 | $formulaValue = $cell->getCalculatedValue(); |
231 | 231 | } catch (Exception $e) { |