Completed
Branch master (962a82)
by Adrien
09:13
created
src/PhpSpreadsheet/Worksheet/ColumnCellIterator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@
 block discarded – undo
136 136
     /**
137 137
      * Return the current cell in this worksheet column
138 138
      *
139
-     * @return Row
139
+     * @return null|\PHPExcel\Cell
140 140
      */
141 141
     public function current()
142 142
     {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Worksheet/ColumnDimension.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     /**
70 70
      * Get ColumnIndex
71 71
      *
72
-     * @return string
72
+     * @return integer
73 73
      */
74 74
     public function getColumnIndex()
75 75
     {
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
     /**
102 102
      * Set Width
103 103
      *
104
-     * @param double $pValue
104
+     * @param integer $pValue
105 105
      * @return ColumnDimension
106 106
      */
107 107
     public function setWidth($pValue = -1)
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Worksheet/Dimension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     /**
61 61
      * Create a new Dimension
62 62
      *
63
-     * @param int $pIndex Numeric row index
63
+     * @param integer $initialValue
64 64
      */
65 65
     public function __construct($initialValue = null)
66 66
     {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Worksheet/Drawing/Shadow.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -230,7 +230,7 @@
 block discarded – undo
230 230
     /**
231 231
      * Set Color
232 232
      *
233
-     * @param    \PHPExcel\Style_Color $pValue
233
+     * @param    \PHPExcel\Style\Color $pValue
234 234
      * @throws   \PHPExcel\Exception
235 235
      * @return   Shadow
236 236
      */
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Worksheet/PageSetup.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -802,7 +802,7 @@  discard block
 block discarded – undo
802 802
      * Set first page number
803 803
      *
804 804
      * @param int $value
805
-     * @return HeaderFooter
805
+     * @return PageSetup
806 806
      */
807 807
     public function setFirstPageNumber($value = null)
808 808
     {
@@ -813,7 +813,7 @@  discard block
 block discarded – undo
813 813
     /**
814 814
      * Reset first page number
815 815
      *
816
-     * @return HeaderFooter
816
+     * @return PageSetup
817 817
      */
818 818
     public function resetFirstPageNumber()
819 819
     {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Worksheet/RowDimension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
     /**
102 102
      * Set Row Height
103 103
      *
104
-     * @param double $pValue
104
+     * @param integer $pValue
105 105
      * @return RowDimension
106 106
      */
107 107
     public function setRowHeight($pValue = -1)
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/CSV.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
      * Set whether a separator line should be included as the first line of the file
259 259
      *
260 260
      * @param    boolean    $pValue        Use separator line? Defaults to false
261
-     * @return PHPExcel_Writer_CSV
261
+     * @return CSV
262 262
      */
263 263
     public function setIncludeSeparatorLine($pValue = false)
264 264
     {
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
     /**
315 315
      * Write line to CSV file
316 316
      *
317
-     * @param    mixed    $pFileHandle    PHP filehandle
317
+     * @param    resource    $pFileHandle    PHP filehandle
318 318
      * @param    array    $pValues        Array containing values in a row
319 319
      * @throws    Exception
320 320
      */
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/Excel2007.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -397,7 +397,7 @@  discard block
 block discarded – undo
397 397
     /**
398 398
      * Get PHPExcel object
399 399
      *
400
-     * @return PHPExcel
400
+     * @return \PHPExcel\Spreadsheet
401 401
      * @throws \PHPExcel\Writer\Exception
402 402
      */
403 403
     public function getPHPExcel()
@@ -516,7 +516,7 @@  discard block
 block discarded – undo
516 516
      * Set Office2003 compatibility
517 517
      *
518 518
      * @param boolean $pValue    Office2003 compatibility?
519
-     * @return PHPExcel_Writer_Excel2007
519
+     * @return Excel2007
520 520
      */
521 521
     public function setOffice2003Compatibility($pValue = false)
522 522
     {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/Excel2007/Chart.php 1 patch
Doc Comments   +10 added lines, -5 removed lines patch added patch discarded remove patch
@@ -408,11 +408,13 @@  discard block
 block discarded – undo
408 408
      *
409 409
      * @param  \PHPExcel\Shared\XMLWriter $objWriter XML Writer
410 410
      * @param  PlotArea $plotArea
411
-     * @param  PHPExcel_Chart_Title $xAxisLabel
411
+     * @param  Title $xAxisLabel
412 412
      * @param  string $groupType Chart type
413 413
      * @param  string $id1
414 414
      * @param  string $id2
415 415
      * @param  boolean $isMultiLevelSeries
416
+     * @param Axis $xAxis
417
+     * @param Axis $yAxis
416 418
      *
417 419
      * @throws  \PHPExcel\Writer\Exception
418 420
      */
@@ -529,12 +531,16 @@  discard block
 block discarded – undo
529 531
      * Write Value Axis
530 532
      *
531 533
      * @param  \PHPExcel\Shared\XMLWriter $objWriter XML Writer
532
-     * @param  PHPExcel_Chart_PlotArea $plotArea
533
-     * @param  PHPExcel_Chart_Title $yAxisLabel
534
+     * @param  PlotArea $plotArea
535
+     * @param  Title $yAxisLabel
534 536
      * @param  string $groupType Chart type
535 537
      * @param  string $id1
536 538
      * @param  string $id2
537 539
      * @param  boolean $isMultiLevelSeries
540
+     * @param Axis $xAxis
541
+     * @param Axis $yAxis
542
+     * @param GridLines $majorGridlines
543
+     * @param GridLines $minorGridlines
538 544
      *
539 545
      * @throws  \PHPExcel\Writer\Exception
540 546
      */
@@ -1015,7 +1021,7 @@  discard block
 block discarded – undo
1015 1021
     /**
1016 1022
      * Get the data series type(s) for a chart plot series
1017 1023
      *
1018
-     * @param  PHPExcel_Chart_PlotArea $plotArea
1024
+     * @param  PlotArea $plotArea
1019 1025
      *
1020 1026
      * @return  string|array
1021 1027
      * @throws  \PHPExcel\Writer\Exception
@@ -1261,7 +1267,6 @@  discard block
 block discarded – undo
1261 1267
      * @param  \PHPExcel\Shared\XMLWriter $objWriter XML Writer
1262 1268
      * @param  string $groupType Type of plot for dataseries
1263 1269
      * @param  string $dataType Datatype of series values
1264
-     * @param  \PHPExcel\Worksheet $pSheet
1265 1270
      *
1266 1271
      * @throws  \PHPExcel\Writer\Exception
1267 1272
      */
Please login to merge, or discard this patch.