@@ -108,7 +108,7 @@ |
||
108 | 108 | /** |
109 | 109 | * Checks if the sheet has been sucessfully created. Throws an exception if not. |
110 | 110 | * |
111 | - * @param bool|resource $sheetFilePointer Pointer to the sheet data file or FALSE if unable to open the file |
|
111 | + * @param resource $sheetFilePointer Pointer to the sheet data file or FALSE if unable to open the file |
|
112 | 112 | * @throws IOException If the sheet data file cannot be opened for writing |
113 | 113 | * @return void |
114 | 114 | */ |
@@ -44,16 +44,19 @@ |
||
44 | 44 | |
45 | 45 | /** |
46 | 46 | * Starts the current sheet and opens its file pointer |
47 | + * @return void |
|
47 | 48 | */ |
48 | 49 | public function startCurrentSheet(); |
49 | 50 | |
50 | 51 | /** |
51 | 52 | * @param float $width |
53 | + * @return void |
|
52 | 54 | */ |
53 | 55 | public function setDefaultColumnWidth(float $width); |
54 | 56 | |
55 | 57 | /** |
56 | 58 | * @param float $height |
59 | + * @return void |
|
57 | 60 | */ |
58 | 61 | public function setDefaultRowHeight(float $height); |
59 | 62 |
@@ -13,17 +13,20 @@ discard block |
||
13 | 13 | { |
14 | 14 | /** |
15 | 15 | * @param float|null $width |
16 | + * @return void |
|
16 | 17 | */ |
17 | 18 | public function setDefaultColumnWidth($width); |
18 | 19 | |
19 | 20 | /** |
20 | 21 | * @param float|null $height |
22 | + * @return void |
|
21 | 23 | */ |
22 | 24 | public function setDefaultRowHeight($height); |
23 | 25 | |
24 | 26 | /** |
25 | 27 | * @param float $width |
26 | 28 | * @param array $columns One or more columns with this width |
29 | + * @return void |
|
27 | 30 | */ |
28 | 31 | public function setColumnWidth(float $width, ...$columns); |
29 | 32 | |
@@ -31,6 +34,7 @@ discard block |
||
31 | 34 | * @param float $width The width to set |
32 | 35 | * @param int $start First column index of the range |
33 | 36 | * @param int $end Last column index of the range |
37 | + * @return void |
|
34 | 38 | */ |
35 | 39 | public function setColumnWidthForRange(float $width, int $start, int $end); |
36 | 40 |