1 | <?php |
||
5 | class Media implements MediaInterface |
||
6 | { |
||
7 | protected $contentType; |
||
8 | protected $data; |
||
9 | |||
10 | 1 | public function __construct($content_type, $data) |
|
15 | |||
16 | 1 | public function getContentType() |
|
20 | |||
21 | 1 | public function getBinaryString() |
|
25 | |||
26 | 1 | public function getDataUri() |
|
30 | |||
31 | 1 | public function save($path) |
|
38 | } |
||
39 |