Completed
Push — develop ( e1f81f...539a89 )
by Adrien
16:11
created
src/PhpSpreadsheet/Worksheet/AutoFilter/Column/Rule.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -285,7 +285,7 @@
 block discarded – undo
285 285
      *
286 286
      *    @param   string        $pRuleType
287 287
      *    @throws  \PhpSpreadsheet\Exception
288
-     *    @return  \PhpSpreadsheet\Worksheet\AutoFilter\Column
288
+     *    @return  Rule
289 289
      */
290 290
     public function setRuleType($pRuleType = self::AUTOFILTER_RULETYPE_FILTER)
291 291
     {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Worksheet/ColumnCellIterator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
     /**
136 136
      * Return the current cell in this worksheet column
137 137
      *
138
-     * @return Row
138
+     * @return null|\PhpSpreadsheet\Cell
139 139
      */
140 140
     public function current()
141 141
     {
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
@@ -229,7 +229,7 @@
 block discarded – undo
229 229
     /**
230 230
      * Set Color
231 231
      *
232
-     * @param    \PhpSpreadsheet\Style_Color $pValue
232
+     * @param    \PhpSpreadsheet\Style\Color $pValue
233 233
      * @throws   \PhpSpreadsheet\Exception
234 234
      * @return   Shadow
235 235
      */
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/CSV.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -311,7 +311,7 @@
 block discarded – undo
311 311
     /**
312 312
      * Write line to CSV file
313 313
      *
314
-     * @param    mixed    $pFileHandle    PHP filehandle
314
+     * @param    resource    $pFileHandle    PHP filehandle
315 315
      * @param    array    $pValues        Array containing values in a row
316 316
      * @throws    Exception
317 317
      */
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/Excel2007.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -397,7 +397,7 @@
 block discarded – undo
397 397
     /**
398 398
      * Get PhpSpreadsheet object
399 399
      *
400
-     * @return PhpSpreadsheet
400
+     * @return \PhpSpreadsheet\Spreadsheet
401 401
      * @throws \PhpSpreadsheet\Writer\Exception
402 402
      */
403 403
     public function getPhpSpreadsheet()
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/Excel2007/Chart.php 1 patch
Doc Comments   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -411,6 +411,8 @@  discard block
 block discarded – undo
411 411
      * @param  string $id1
412 412
      * @param  string $id2
413 413
      * @param  boolean $isMultiLevelSeries
414
+     * @param null|Axis $xAxis
415
+     * @param null|Axis $yAxis
414 416
      *
415 417
      * @throws  \PhpSpreadsheet\Writer\Exception
416 418
      */
@@ -533,6 +535,10 @@  discard block
 block discarded – undo
533 535
      * @param  string $id1
534 536
      * @param  string $id2
535 537
      * @param  boolean $isMultiLevelSeries
538
+     * @param null|Axis $xAxis
539
+     * @param null|Axis $yAxis
540
+     * @param null|GridLines $majorGridlines
541
+     * @param null|GridLines $minorGridlines
536 542
      *
537 543
      * @throws  \PhpSpreadsheet\Writer\Exception
538 544
      */
@@ -1259,7 +1265,6 @@  discard block
 block discarded – undo
1259 1265
      * @param  \PhpSpreadsheet\Shared\XMLWriter $objWriter XML Writer
1260 1266
      * @param  string $groupType Type of plot for dataseries
1261 1267
      * @param  string $dataType Datatype of series values
1262
-     * @param  \PhpSpreadsheet\Worksheet $pSheet
1263 1268
      *
1264 1269
      * @throws  \PhpSpreadsheet\Writer\Exception
1265 1270
      */
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/Excel5/Workbook.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -191,7 +191,9 @@  discard block
 block discarded – undo
191 191
      * @param int        &$str_unique    Total number of unique strings
192 192
      * @param array        &$str_table        String Table
193 193
      * @param array        &$colors        Colour Table
194
-     * @param mixed        $parser            The formula parser created for the Workbook
194
+     * @param Parser        $parser            The formula parser created for the Workbook
195
+     * @param integer $str_total
196
+     * @param integer $str_unique
195 197
      */
196 198
     public function __construct(\PhpSpreadsheet\Spreadsheet $spreadsheet, &$str_total, &$str_unique, &$str_table, &$colors, $parser)
197 199
     {
@@ -238,6 +240,7 @@  discard block
 block discarded – undo
238 240
      *
239 241
      * @param \PhpSpreadsheet\Style
240 242
      * @param boolean Is it a style XF?
243
+     * @param \PhpSpreadsheet\Style $style
241 244
      * @return int Index to XF record
242 245
      */
243 246
     public function addXfWriter($style, $isStyleXf = false)
@@ -790,7 +793,7 @@  discard block
 block discarded – undo
790 793
      *
791 794
      * @param    string        $name            The name in UTF-8
792 795
      * @param    string        $formulaData    The binary formula data
793
-     * @param    string        $sheetIndex        1-based sheet index the defined name applies to. 0 = global
796
+     * @param    integer        $sheetIndex        1-based sheet index the defined name applies to. 0 = global
794 797
      * @param    boolean        $isBuiltIn        Built-in name?
795 798
      * @return    string    Complete binary record data
796 799
      */
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
@@ -1439,7 +1439,7 @@
 block discarded – undo
1439 1439
     /**
1440 1440
      * Set embed images
1441 1441
      *
1442
-     * @param boolean $pValue
1442
+     * @param string|boolean $pValue
1443 1443
      * @return Spreadsheet_Writer_HTML
1444 1444
      */
1445 1445
     public function setEmbedImages($pValue = '.')
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/OpenDocument.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      * Get writer part
69 69
      *
70 70
      * @param  string  $pPartName  Writer part name
71
-     * @return \PhpSpreadsheet\Writer\Excel2007\WriterPart
71
+     * @return OpenDocument\WriterPart|null
72 72
      */
73 73
     public function getWriterPart($pPartName = '')
74 74
     {
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
      *
180 180
      * @param  \PhpSpreadsheet\Spreadsheet $spreadsheet  PhpSpreadsheet object
181 181
      * @throws \PhpSpreadsheet\Writer\Exception
182
-     * @return Excel2007
182
+     * @return OpenDocument
183 183
      */
184 184
     public function setPhpSpreadsheet(\PhpSpreadsheet\SpreadSheet $spreadsheet = null)
185 185
     {
Please login to merge, or discard this patch.