init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
52
lib/PhpSpreadsheet/Shared/Escher.php
Normal file
52
lib/PhpSpreadsheet/Shared/Escher.php
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
<?php
|
||||
|
||||
namespace PhpOffice\PhpSpreadsheet\Shared;
|
||||
|
||||
class Escher
|
||||
{
|
||||
/**
|
||||
* Drawing Group Container.
|
||||
*
|
||||
* @var ?Escher\DggContainer
|
||||
*/
|
||||
private ?Escher\DggContainer $dggContainer = null;
|
||||
|
||||
/**
|
||||
* Drawing Container.
|
||||
*
|
||||
* @var ?Escher\DgContainer
|
||||
*/
|
||||
private ?Escher\DgContainer $dgContainer = null;
|
||||
|
||||
/**
|
||||
* Get Drawing Group Container.
|
||||
*/
|
||||
public function getDggContainer(): ?Escher\DggContainer
|
||||
{
|
||||
return $this->dggContainer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set Drawing Group Container.
|
||||
*/
|
||||
public function setDggContainer(Escher\DggContainer $dggContainer): Escher\DggContainer
|
||||
{
|
||||
return $this->dggContainer = $dggContainer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get Drawing Container.
|
||||
*/
|
||||
public function getDgContainer(): ?Escher\DgContainer
|
||||
{
|
||||
return $this->dgContainer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set Drawing Container.
|
||||
*/
|
||||
public function setDgContainer(Escher\DgContainer $dgContainer): Escher\DgContainer
|
||||
{
|
||||
return $this->dgContainer = $dgContainer;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue