Alter Version
This commit is contained in:
33
vendor/PhpSpreadsheet/Writer/Xlsx/WriterPart.php
vendored
Normal file
33
vendor/PhpSpreadsheet/Writer/Xlsx/WriterPart.php
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace PhpOffice\PhpSpreadsheet\Writer\Xlsx;
|
||||
|
||||
use PhpOffice\PhpSpreadsheet\Writer\Xlsx;
|
||||
|
||||
abstract class WriterPart
|
||||
{
|
||||
/**
|
||||
* Parent Xlsx object.
|
||||
*
|
||||
* @var Xlsx
|
||||
*/
|
||||
private $parentWriter;
|
||||
|
||||
/**
|
||||
* Get parent Xlsx object.
|
||||
*
|
||||
* @return Xlsx
|
||||
*/
|
||||
public function getParentWriter()
|
||||
{
|
||||
return $this->parentWriter;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set parent Xlsx object.
|
||||
*/
|
||||
public function __construct(Xlsx $pWriter)
|
||||
{
|
||||
$this->parentWriter = $pWriter;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user