Differences Between: [Versions 310 and 402] [Versions 311 and 402] [Versions 39 and 402]
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 public function __construct(Xlsx $writer) 30 { 31 $this->parentWriter = $writer; 32 } 33 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body