Completed
Pull Request — develop (#261)
by
unknown
18:47
created
src/PhpSpreadsheet/Worksheet/Worksheet.php 1 patch
Doc Comments   +6 added lines, -5 removed lines patch added patch discarded remove patch
@@ -605,7 +605,7 @@  discard block
 block discarded – undo
605 605
      *
606 606
      * @throws Exception
607 607
      *
608
-     * @return Chart|false
608
+     * @return Chart
609 609
      */
610 610
     public function getChartByIndex($index)
611 611
     {
@@ -1116,7 +1116,7 @@  discard block
 block discarded – undo
1116 1116
      * @param string $column Return the highest data row for the specified column,
1117 1117
      *                                     or the highest data row of any column if no column letter is passed
1118 1118
      *
1119
-     * @return string Highest row number that contains data
1119
+     * @return integer Highest row number that contains data
1120 1120
      */
1121 1121
     public function getHighestDataRow($column = null)
1122 1122
     {
@@ -1168,7 +1168,7 @@  discard block
 block discarded – undo
1168 1168
      * Set a cell value.
1169 1169
      *
1170 1170
      * @param string $pCoordinate Coordinate of the cell, eg: 'A1'
1171
-     * @param mixed $pValue Value of the cell
1171
+     * @param string $pValue Value of the cell
1172 1172
      * @param string $pDataType Explicit data type, see DataType::TYPE_*
1173 1173
      *
1174 1174
      * @return Worksheet
@@ -1939,7 +1939,7 @@  discard block
 block discarded – undo
1939 1939
     /**
1940 1940
      * Set AutoFilter.
1941 1941
      *
1942
-     * @param AutoFilter|string $pValue
1942
+     * @param string $pValue
1943 1943
      *            A simple string containing a Cell range like 'A1:E10' is permitted for backward compatibility
1944 1944
      *
1945 1945
      * @throws Exception
@@ -2003,10 +2003,11 @@  discard block
 block discarded – undo
2003 2003
     /**
2004 2004
      * Freeze Pane.
2005 2005
      *
2006
-     * @param string $pCell Cell (i.e. A2)
2007 2006
      *
2008 2007
      * @throws Exception
2009 2008
      *
2009
+     * @param integer $colSplit
2010
+     * @param integer $rowSplit
2010 2011
      * @return Worksheet
2011 2012
      */
2012 2013
     public function createFreezePane($colSplit, $rowSplit, $leftMostColumn = null , $topRow = null)
Please login to merge, or discard this patch.