Completed
Push — develop ( 557e80...8d23bd )
by Adrien
46:21
created
src/PhpSpreadsheet/Cell/Cell.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -948,7 +948,7 @@
 block discarded – undo
948 948
      *
949 949
      *    [ 'A1:A3' => 'x', 'A4' => 'y' ]
950 950
      *
951
-     * @param array $pCoordCollection associative array mapping coordinates to values
951
+     * @param DataValidation[] $pCoordCollection associative array mapping coordinates to values
952 952
      *
953 953
      * @return array associative array mapping coordinate ranges to valuea
954 954
      */
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Worksheet/Worksheet.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -576,7 +576,7 @@  discard block
 block discarded – undo
576 576
      *
577 577
      * @throws Exception
578 578
      *
579
-     * @return Chart|false
579
+     * @return Chart
580 580
      */
581 581
     public function getChartByIndex($index)
582 582
     {
@@ -1087,7 +1087,7 @@  discard block
 block discarded – undo
1087 1087
      * @param string $column Return the highest data row for the specified column,
1088 1088
      *                                     or the highest data row of any column if no column letter is passed
1089 1089
      *
1090
-     * @return string Highest row number that contains data
1090
+     * @return integer Highest row number that contains data
1091 1091
      */
1092 1092
     public function getHighestDataRow($column = null)
1093 1093
     {
@@ -1139,7 +1139,7 @@  discard block
 block discarded – undo
1139 1139
      * Set a cell value.
1140 1140
      *
1141 1141
      * @param string $pCoordinate Coordinate of the cell, eg: 'A1'
1142
-     * @param mixed $pValue Value of the cell
1142
+     * @param string $pValue Value of the cell
1143 1143
      * @param string $pDataType Explicit data type, see DataType::TYPE_*
1144 1144
      *
1145 1145
      * @return Worksheet
@@ -1910,7 +1910,7 @@  discard block
 block discarded – undo
1910 1910
     /**
1911 1911
      * Set AutoFilter.
1912 1912
      *
1913
-     * @param AutoFilter|string $pValue
1913
+     * @param string $pValue
1914 1914
      *            A simple string containing a Cell range like 'A1:E10' is permitted for backward compatibility
1915 1915
      *
1916 1916
      * @throws Exception
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/Xls/Worksheet.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -622,7 +622,7 @@  discard block
 block discarded – undo
622 622
      * @param int $row Zero indexed row
623 623
      * @param int $col Zero indexed column
624 624
      * @param float $num The number to write
625
-     * @param mixed $xfIndex The optional XF format
625
+     * @param integer $xfIndex The optional XF format
626 626
      *
627 627
      * @return int
628 628
      */
@@ -694,7 +694,7 @@  discard block
 block discarded – undo
694 694
      * @param int $row Zero indexed row
695 695
      * @param int $col Zero indexed column
696 696
      * @param string $str The string to write
697
-     * @param mixed $xfIndex The XF format index for the cell
697
+     * @param integer $xfIndex The XF format index for the cell
698 698
      *
699 699
      * @return int
700 700
      */
@@ -730,7 +730,7 @@  discard block
 block discarded – undo
730 730
      *
731 731
      * @param int $row Zero indexed row
732 732
      * @param int $col Zero indexed column
733
-     * @param mixed $xfIndex The XF format index
733
+     * @param integer $xfIndex The XF format index
734 734
      */
735 735
     public function writeBlank($row, $col, $xfIndex)
736 736
     {
@@ -777,7 +777,7 @@  discard block
 block discarded – undo
777 777
      * @param int $row Zero indexed row
778 778
      * @param int $col Zero indexed column
779 779
      * @param string $formula The formula text string
780
-     * @param mixed $xfIndex The XF format index
780
+     * @param integer $xfIndex The XF format index
781 781
      * @param mixed $calculatedValue Calculated value
782 782
      *
783 783
      * @return int
@@ -2205,8 +2205,8 @@  discard block
 block discarded – undo
2205 2205
      * @param mixed $bitmap The bitmap filename or GD-image resource
2206 2206
      * @param int $x the horizontal position (offset) of the image inside the cell
2207 2207
      * @param int $y the vertical position (offset) of the image inside the cell
2208
-     * @param float $scale_x The horizontal scale
2209
-     * @param float $scale_y The vertical scale
2208
+     * @param integer $scale_x The horizontal scale
2209
+     * @param integer $scale_y The vertical scale
2210 2210
      */
2211 2211
     public function insertBitmap($row, $col, $bitmap, $x = 0, $y = 0, $scale_x = 1, $scale_y = 1)
2212 2212
     {
Please login to merge, or discard this patch.