Completed
Pull Request — develop (#158)
by
unknown
37:39
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/Chart/DataSeriesValues.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,9 +93,10 @@
 block discarded – undo
93 93
 >>>>>>> aea557bd70f6e4ac13ca625c342fce26ad544331
94 94
      * @param string $dataSource
95 95
      * @param null|mixed $formatCode
96
-     * @param mixed $pointCount
96
+     * @param integer $pointCount
97 97
      * @param mixed $dataValues
98 98
      * @param null|mixed $marker
99
+     * @param boolean $color
99 100
      */
100 101
     public function __construct($dataType = self::DATASERIES_TYPE_NUMBER, $dataSource = null, $formatCode = null, $pointCount = 0, $dataValues = [], $marker = null, $color = null)
101 102
     {
Please login to merge, or discard this patch.