1 | <?php |
||
18 | class Content implements ContentInterface |
||
19 | { |
||
20 | /** |
||
21 | * @var null|string |
||
22 | */ |
||
23 | private $content = null; |
||
24 | |||
25 | /** |
||
26 | * Content constructor. |
||
27 | * |
||
28 | * @param string $content |
||
29 | */ |
||
30 | public function __construct(string $content) |
||
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | public function get(): string |
||
42 | } |
||
43 |