1 | <?php |
||
27 | class Blip |
||
28 | { |
||
29 | /** |
||
30 | * The parent BSE. |
||
31 | * |
||
32 | * @var \PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE |
||
33 | */ |
||
34 | private $parent; |
||
35 | |||
36 | /** |
||
37 | * Raw image data. |
||
38 | * |
||
39 | * @var string |
||
40 | */ |
||
41 | private $data; |
||
42 | |||
43 | /** |
||
44 | * Get the raw image data. |
||
45 | * |
||
46 | * @return string |
||
47 | */ |
||
48 | 7 | public function getData() |
|
52 | |||
53 | /** |
||
54 | * Set the raw image data. |
||
55 | * |
||
56 | * @param string |
||
57 | * @param mixed $data |
||
58 | */ |
||
59 | 7 | public function setData($data) |
|
63 | |||
64 | /** |
||
65 | * Set parent BSE. |
||
66 | * |
||
67 | * @param \PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE $parent |
||
68 | */ |
||
69 | 7 | public function setParent($parent) |
|
73 | |||
74 | /** |
||
75 | * Get parent BSE. |
||
76 | * |
||
77 | * @return \PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE $parent |
||
78 | */ |
||
79 | 7 | public function getParent() |
|
83 | } |
||
84 |