Completed
Pull Request — develop (#158)
by
unknown
33:37
created
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   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -91,11 +91,11 @@
 block discarded – undo
91 91
      *
92 92
      * @param string     $dataSource
93 93
      * @param null|mixed $formatCode
94
-     * @param mixed      $pointCount
94
+     * @param integer      $pointCount
95 95
      * @param mixed      $dataValues
96 96
      * @param null|mixed $marker
97
-     * @param mixed      $dataType
98
-     * @param null|mixed $color
97
+     * @param string      $dataType
98
+     * @param boolean $color
99 99
      */
100 100
     public function __construct($dataType = self::DATASERIES_TYPE_NUMBER, $dataSource = null, $formatCode = null, $pointCount = 0, $dataValues = array(), $marker = null, $color = null)
101 101
     {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Chart/Layout.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
     /**
237 237
      * Get X-Position.
238 238
      *
239
-     * @return number
239
+     * @return string
240 240
      */
241 241
     public function getXPosition()
242 242
     {
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
     /**
261 261
      * Get Y-Position.
262 262
      *
263
-     * @return number
263
+     * @return string
264 264
      */
265 265
     public function getYPosition()
266 266
     {
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
     /**
285 285
      * Get Width.
286 286
      *
287
-     * @return number
287
+     * @return string
288 288
      */
289 289
     public function getWidth()
290 290
     {
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
     /**
309 309
      * Get Height.
310 310
      *
311
-     * @return number
311
+     * @return string
312 312
      */
313 313
     public function getHeight()
314 314
     {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/Xlsx/Chart.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -410,8 +410,8 @@  discard block
 block discarded – undo
410 410
      * @param string                                     $id1
411 411
      * @param string                                     $id2
412 412
      * @param bool                                       $isMultiLevelSeries
413
-     * @param mixed                                      $xAxis
414
-     * @param mixed                                      $yAxis
413
+     * @param null|Axis                                      $xAxis
414
+     * @param null|Axis                                      $yAxis
415 415
      *
416 416
      * @throws \PhpOffice\PhpSpreadsheet\Writer\Exception
417 417
      */
@@ -533,10 +533,10 @@  discard block
 block discarded – undo
533 533
      * @param string                                     $id1
534 534
      * @param string                                     $id2
535 535
      * @param bool                                       $isMultiLevelSeries
536
-     * @param mixed                                      $xAxis
537
-     * @param mixed                                      $yAxis
538
-     * @param mixed                                      $majorGridlines
539
-     * @param mixed                                      $minorGridlines
536
+     * @param null|Axis                                      $xAxis
537
+     * @param null|Axis                                      $yAxis
538
+     * @param null|GridLines                                      $majorGridlines
539
+     * @param null|GridLines                                      $minorGridlines
540 540
      *
541 541
      * @throws \PhpOffice\PhpSpreadsheet\Writer\Exception
542 542
      */
Please login to merge, or discard this patch.