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