@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | * set ribbon XML data. |
219 | 219 | * |
220 | 220 | * @param null|mixed $target |
221 | - * @param null|mixed $xmlData |
|
221 | + * @param string $xmlData |
|
222 | 222 | */ |
223 | 223 | public function setRibbonXMLData($target, $xmlData) |
224 | 224 | { |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | /** |
286 | 286 | * retrieve Binaries Ribbon Objects. |
287 | 287 | * |
288 | - * @param mixed $what |
|
288 | + * @param string $what |
|
289 | 289 | */ |
290 | 290 | public function getRibbonBinObjects($what = 'all') |
291 | 291 | { |
@@ -471,7 +471,7 @@ discard block |
||
471 | 471 | /** |
472 | 472 | * Set Columns to repeat at left. |
473 | 473 | * |
474 | - * @param array $pValue Containing start column and end column, empty array if option unset |
|
474 | + * @param string[] $pValue Containing start column and end column, empty array if option unset |
|
475 | 475 | * |
476 | 476 | * @return PageSetup |
477 | 477 | */ |
@@ -526,7 +526,7 @@ discard block |
||
526 | 526 | /** |
527 | 527 | * Set Rows to repeat at top. |
528 | 528 | * |
529 | - * @param array $pValue Containing start column and end column, empty array if option unset |
|
529 | + * @param string[] $pValue Containing start column and end column, empty array if option unset |
|
530 | 530 | * |
531 | 531 | * @return PageSetup |
532 | 532 | */ |
@@ -808,6 +808,9 @@ |
||
808 | 808 | return $styleArray; |
809 | 809 | } |
810 | 810 | |
811 | + /** |
|
812 | + * @param string $is |
|
813 | + */ |
|
811 | 814 | private function parseRichText($is) |
812 | 815 | { |
813 | 816 | $value = new RichText(); |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | * |
39 | 39 | * @param row Row number to use in the cell reference |
40 | 40 | * @param column Column number to use in the cell reference |
41 | - * @param relativity Flag indicating the type of reference to return |
|
41 | + * @param relativity integer indicating the type of reference to return |
|
42 | 42 | * 1 or omitted Absolute |
43 | 43 | * 2 Absolute row; relative column |
44 | 44 | * 3 Relative row; absolute column |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | * @param sheetText Optional Name of worksheet to use |
50 | 50 | * @param mixed $row |
51 | 51 | * @param mixed $column |
52 | - * @param mixed $relativity |
|
52 | + * @param integer $relativity |
|
53 | 53 | * @param mixed $referenceStyle |
54 | 54 | * @param mixed $sheetText |
55 | 55 | * |
@@ -360,7 +360,7 @@ discard block |
||
360 | 360 | * |
361 | 361 | * @param cellAddress The reference from which you want to base the offset. Reference must refer to a cell or |
362 | 362 | * range of adjacent cells; otherwise, OFFSET returns the #VALUE! error value. |
363 | - * @param rows The number of rows, up or down, that you want the upper-left cell to refer to. |
|
363 | + * @param rows integer number of rows, up or down, that you want the upper-left cell to refer to. |
|
364 | 364 | * Using 5 as the rows argument specifies that the upper-left cell in the reference is |
365 | 365 | * five rows below reference. Rows can be positive (which means below the starting reference) |
366 | 366 | * or negative (which means above the starting reference). |
@@ -372,8 +372,8 @@ discard block |
||
372 | 372 | * @param height The height, in number of rows, that you want the returned reference to be. Height must be a positive number. |
373 | 373 | * @param width The width, in number of columns, that you want the returned reference to be. Width must be a positive number. |
374 | 374 | * @param null|mixed $cellAddress |
375 | - * @param mixed $rows |
|
376 | - * @param mixed $columns |
|
375 | + * @param integer $rows |
|
376 | + * @param integer $columns |
|
377 | 377 | * @param null|mixed $height |
378 | 378 | * @param null|mixed $width |
379 | 379 | * @param Cell $pCell |
@@ -501,7 +501,7 @@ discard block |
||
501 | 501 | * |
502 | 502 | * @param mixed $lookupValue The value that you want to match in lookup_array |
503 | 503 | * @param mixed $lookupArray The range of cells being searched |
504 | - * @param mixed $matchType The number -1, 0, or 1. -1 means above, 0 means exact match, 1 means below. If match_type is 1 or -1, the list has to be ordered. |
|
504 | + * @param integer $matchType The number -1, 0, or 1. -1 means above, 0 means exact match, 1 means below. If match_type is 1 or -1, the list has to be ordered. |
|
505 | 505 | * |
506 | 506 | * @return int The relative position of the found item |
507 | 507 | */ |
@@ -615,8 +615,8 @@ discard block |
||
615 | 615 | * @param row_num The row in array from which to return a value. If row_num is omitted, column_num is required. |
616 | 616 | * @param column_num The column in array from which to return a value. If column_num is omitted, row_num is required. |
617 | 617 | * @param mixed $arrayValues |
618 | - * @param mixed $rowNum |
|
619 | - * @param mixed $columnNum |
|
618 | + * @param integer $rowNum |
|
619 | + * @param integer $columnNum |
|
620 | 620 | * |
621 | 621 | * @return mixed the value of a specified cell or array of cells |
622 | 622 | */ |
@@ -712,11 +712,11 @@ discard block |
||
712 | 712 | * |
713 | 713 | * @param lookup_value The value that you want to match in lookup_array |
714 | 714 | * @param lookup_array The range of cells being searched |
715 | - * @param index_number The column number in table_array from which the matching value must be returned. The first column is 1. |
|
715 | + * @param index_number integer column number in table_array from which the matching value must be returned. The first column is 1. |
|
716 | 716 | * @param not_exact_match determines if you are looking for an exact match based on lookup_value |
717 | 717 | * @param mixed $lookup_value |
718 | 718 | * @param mixed $lookup_array |
719 | - * @param mixed $index_number |
|
719 | + * @param integer $index_number |
|
720 | 720 | * @param mixed $not_exact_match |
721 | 721 | * |
722 | 722 | * @return mixed The value of the found cell |
@@ -410,8 +410,8 @@ discard block |
||
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 WriterException |
417 | 417 | */ |
@@ -533,10 +533,10 @@ discard block |
||
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 WriterException |
542 | 542 | */ |
@@ -140,7 +140,7 @@ |
||
140 | 140 | /** |
141 | 141 | * Constructor. |
142 | 142 | * |
143 | - * @param Style The XF format |
|
143 | + * @param Style Style XF format |
|
144 | 144 | */ |
145 | 145 | public function __construct(Style $style) |
146 | 146 | { |
@@ -45,7 +45,6 @@ |
||
45 | 45 | /** |
46 | 46 | * Create a new row. |
47 | 47 | * |
48 | - * @param Worksheet $parent |
|
49 | 48 | * @param int $rowIndex |
50 | 49 | */ |
51 | 50 | public function __construct(Worksheet $worksheet = null, $rowIndex = 1) |
@@ -1072,7 +1072,6 @@ |
||
1072 | 1072 | * @param XMLWriter $objWriter XML Writer |
1073 | 1073 | * @param PhpspreadsheetWorksheet $pSheet Worksheet |
1074 | 1074 | * @param Cell $pCellAddress Cell Address |
1075 | - * @param string[] $pStringTable String table |
|
1076 | 1075 | * @param string[] $pFlippedStringTable String table (flipped), for faster index searching |
1077 | 1076 | * |
1078 | 1077 | * @throws WriterException |
@@ -243,7 +243,7 @@ |
||
243 | 243 | /** |
244 | 244 | * Solve A*X = B. |
245 | 245 | * |
246 | - * @param $B a Matrix with as many rows as A and any number of columns |
|
246 | + * @param Matrix $B a Matrix with as many rows as A and any number of columns |
|
247 | 247 | * |
248 | 248 | * @throws CalculationException illegalArgumentException Matrix row dimensions must agree |
249 | 249 | * @throws CalculationException runtimeException Matrix is singular |