See Release Notes
Long Term Support Release
Differences Between: [Versions 39 and 311] [Versions 39 and 400] [Versions 39 and 401] [Versions 39 and 402] [Versions 39 and 403]
1 <?php 2 3 namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx; 4 5 use PhpOffice\PhpSpreadsheet\Writer\Xlsx; 6 7 abstract class WriterPart 8 { 9 /** 10 * Parent Xlsx object. 11 * 12 * @var Xlsx 13 */ 14 private $parentWriter; 15 16 /** 17 * Get parent Xlsx object. 18 * 19 * @return Xlsx 20 */ 21 public function getParentWriter() 22 { 23 return $this->parentWriter; 24 } 25 26 /** 27 * Set parent Xlsx object. 28 * 29 * @param Xlsx $pWriter 30 */ 31 public function __construct(Xlsx $pWriter) 32 { 33 $this->parentWriter = $pWriter; 34 } 35 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body