golden hour
/home/phakp/public_html/erp/includes/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher
⬆️ Go Up
Upload
File/Folder
Size
Actions
DgContainer
-
Del
OK
DgContainer.php
827 B
Del
OK
DggContainer
-
Del
OK
DggContainer.php
3.25 KB
Del
OK
Edit: DgContainer.php
<?php namespace PhpOffice\PhpSpreadsheet\Shared\Escher; class DgContainer { /** * Drawing index, 1-based. * * @var int */ private $dgId; /** * Last shape index in this drawing. * * @var int */ private $lastSpId; private $spgrContainer; public function getDgId() { return $this->dgId; } public function setDgId($value) { $this->dgId = $value; } public function getLastSpId() { return $this->lastSpId; } public function setLastSpId($value) { $this->lastSpId = $value; } public function getSpgrContainer() { return $this->spgrContainer; } public function setSpgrContainer($spgrContainer) { return $this->spgrContainer = $spgrContainer; } }
Save