Completed
Pull Request — develop (#142)
by Dominik
24:13
created
src/PhpSpreadsheet/Worksheet/PageSetup.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -471,7 +471,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/Html.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1172,7 +1172,7 @@
 block discarded – undo
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
      *
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -1062,7 +1062,6 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/Ods/Content.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -225,7 +225,7 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.