| 1 | <?php |
||
| 4 | class PdfContent implements Content |
||
| 5 | { |
||
| 6 | /** |
||
| 7 | * @var string |
||
| 8 | */ |
||
| 9 | private $value; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @param string $value |
||
| 13 | */ |
||
| 14 | public function __construct(string $value) |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @return string |
||
| 21 | */ |
||
| 22 | public function asString(): string |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return ContentType |
||
| 29 | */ |
||
| 30 | public function getContentType(): ContentType |
||
| 34 | |||
| 35 | } |