mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-02-12 10:38:41 +00:00
59 lines
916 B
PHP
Executable File
59 lines
916 B
PHP
Executable File
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE;
|
|
|
|
class Blip
|
|
{
|
|
/**
|
|
* The parent BSE.
|
|
*
|
|
* @var BSE
|
|
*/
|
|
private $parent;
|
|
|
|
/**
|
|
* Raw image data.
|
|
*
|
|
* @var string
|
|
*/
|
|
private $data;
|
|
|
|
/**
|
|
* Get the raw image data.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getData()
|
|
{
|
|
return $this->data;
|
|
}
|
|
|
|
/**
|
|
* Set the raw image data.
|
|
*
|
|
* @param string $data
|
|
*/
|
|
public function setData($data): void
|
|
{
|
|
$this->data = $data;
|
|
}
|
|
|
|
/**
|
|
* Set parent BSE.
|
|
*/
|
|
public function setParent(BSE $parent): void
|
|
{
|
|
$this->parent = $parent;
|
|
}
|
|
|
|
/**
|
|
* Get parent BSE.
|
|
*/
|
|
public function getParent(): BSE
|
|
{
|
|
return $this->parent;
|
|
}
|
|
}
|