@@ -114,7 +114,7 @@ |
||
114 | 114 | /** |
115 | 115 | * Returns the PHP "memory_limit" in Kilobytes |
116 | 116 | * |
117 | - * @return float |
|
117 | + * @return integer |
|
118 | 118 | */ |
119 | 119 | protected function getMemoryLimitInKB() |
120 | 120 | { |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | |
128 | 128 | /** |
129 | 129 | * @param resource $sheetFilePointer |
130 | - * @param resourceWorksheet $worksheet |
|
130 | + * @param Worksheet $worksheet |
|
131 | 131 | * @return void |
132 | 132 | */ |
133 | 133 | private function addSheetViews($sheetFilePointer, Worksheet $worksheet): void |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | /** |
142 | 142 | * Checks if the sheet has been sucessfully created. Throws an exception if not. |
143 | 143 | * |
144 | - * @param bool|resource $sheetFilePointer Pointer to the sheet data file or FALSE if unable to open the file |
|
144 | + * @param resource $sheetFilePointer Pointer to the sheet data file or FALSE if unable to open the file |
|
145 | 145 | * @throws IOException If the sheet data file cannot be opened for writing |
146 | 146 | * @return void |
147 | 147 | */ |
@@ -17,7 +17,6 @@ |
||
17 | 17 | use Box\Spout\Writer\Common\Manager\RowManager; |
18 | 18 | use Box\Spout\Writer\Common\Manager\Style\StyleMerger; |
19 | 19 | use Box\Spout\Writer\Common\Manager\WorksheetManagerInterface; |
20 | -use Box\Spout\Writer\XLSX\Entity\SheetView; |
|
21 | 20 | use Box\Spout\Writer\XLSX\Manager\Style\StyleManager; |
22 | 21 | |
23 | 22 | /** |