1 | <?php |
||
5 | class PostContentIsRendering |
||
6 | { |
||
7 | /** |
||
8 | * @var string The body of the page to render |
||
9 | */ |
||
10 | private $content; |
||
11 | private $original; |
||
12 | |||
13 | 2 | public function __construct($content) |
|
18 | |||
19 | /** |
||
20 | * @return string |
||
21 | */ |
||
22 | 2 | public function getContent() |
|
26 | |||
27 | /** |
||
28 | * @param string $content |
||
29 | */ |
||
30 | 1 | public function setContent($content) |
|
34 | |||
35 | /** |
||
36 | * @return mixed |
||
37 | */ |
||
38 | 1 | public function getOriginal() |
|
42 | |||
43 | public function __toString() |
||
47 | } |
||
48 |