@@ -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 |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * If a resource pointer to a stream created by fopen() is passed |
60 | 60 | * it will be used, but you have to close such stream by yourself. |
61 | 61 | * |
62 | - * @param string|resource $filename the name of the file or stream where to save the OLE container |
|
62 | + * @param string $filename the name of the file or stream where to save the OLE container |
|
63 | 63 | * |
64 | 64 | * @throws WriterException |
65 | 65 | * |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | * |
125 | 125 | * @param array $raList Reference to an array of PPS's |
126 | 126 | * |
127 | - * @return float[] The array of numbers |
|
127 | + * @return double[] The array of numbers |
|
128 | 128 | */ |
129 | 129 | public function _calcSize(&$raList) |
130 | 130 | { |
@@ -71,7 +71,7 @@ |
||
71 | 71 | /** |
72 | 72 | * Read the file. |
73 | 73 | * |
74 | - * @param $pFilename string Filename |
|
74 | + * @param string $pFilename string Filename |
|
75 | 75 | * |
76 | 76 | * @throws ReaderException |
77 | 77 | */ |
@@ -1188,7 +1188,7 @@ |
||
1188 | 1188 | * @param Worksheet $pSheet \PhpOffice\PhpSpreadsheet\Worksheet |
1189 | 1189 | * @param array $pValues Array containing cells in a row |
1190 | 1190 | * @param int $pRow Row number (0-based) |
1191 | - * @param mixed $cellType eg: 'td' |
|
1191 | + * @param string $cellType eg: 'td' |
|
1192 | 1192 | * |
1193 | 1193 | * @throws WriterException |
1194 | 1194 | * |