| 1 | <?php |
||
| 16 | class SimpleSerializedObject implements SerializedObjectInterface |
||
| 17 | { |
||
| 18 | |||
| 19 | private $data; |
||
| 20 | private $serializedType; |
||
| 21 | |||
| 22 | 56 | public function __construct($data, SerializedTypeInterface $serializedType) |
|
| 27 | |||
| 28 | 38 | public function getContentType() |
|
| 32 | |||
| 33 | 56 | public function getData() |
|
| 37 | |||
| 38 | 45 | public function getType() |
|
| 42 | |||
| 43 | } |
||
| 44 |