File tree Expand file tree Collapse file tree 1 file changed +20
-2
lines changed Expand file tree Collapse file tree 1 file changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -275,13 +275,22 @@ public function setLandscape()
275
275
/**
276
276
* Get Page Size Width
277
277
*
278
- * @return int|float
278
+ * @return int|float|null
279
+ *
280
+ * @since 0.12.0
279
281
*/
280
282
public function getPageSizeW ()
281
283
{
282
284
return $ this ->pageSizeW ;
283
285
}
284
286
287
+ /**
288
+ * @param int|float|null $value
289
+ *
290
+ * @return \PhpOffice\PhpWord\Style\Section
291
+ *
292
+ * @since 0.12.0
293
+ */
285
294
public function setPageSizeW ($ value = null )
286
295
{
287
296
$ this ->pageSizeW = $ this ->setNumericVal ($ value , self ::DEFAULT_WIDTH );
@@ -292,13 +301,22 @@ public function setPageSizeW($value = null)
292
301
/**
293
302
* Get Page Size Height
294
303
*
295
- * @return int|float
304
+ * @return int|float|null
305
+ *
306
+ * @since 0.12.0
296
307
*/
297
308
public function getPageSizeH ()
298
309
{
299
310
return $ this ->pageSizeH ;
300
311
}
301
312
313
+ /**
314
+ * @param int|float|null $value
315
+ *
316
+ * @return \PhpOffice\PhpWord\Style\Section
317
+ *
318
+ * @since 0.12.0
319
+ */
302
320
public function setPageSizeH ($ value = null )
303
321
{
304
322
$ this ->pageSizeH = $ this ->setNumericVal ($ value , self ::DEFAULT_HEIGHT );
You can’t perform that action at this time.
0 commit comments