| 1 | <?php |
||
| 11 | class Content |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | private $html; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | private $text; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | public function getHtml(): string |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param string $html |
||
| 33 | */ |
||
| 34 | public function setHtml(string $html) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return string |
||
| 41 | */ |
||
| 42 | public function getText(): string |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @param string $text |
||
| 49 | */ |
||
| 50 | public function setText(string $text) |
||
| 54 | |||
| 55 | } |