1 | <?php |
||
16 | class Cdata |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $value; |
||
22 | |||
23 | /** |
||
24 | * @param string $value |
||
25 | */ |
||
26 | public function __construct($value) |
||
30 | |||
31 | /** |
||
32 | * Allows to get the wrapped value by casting an instance to string |
||
33 | * |
||
34 | * @return string |
||
35 | */ |
||
36 | public function __toString() |
||
40 | } |
||
41 |