1 | <?php |
||
18 | class FragmentXpath |
||
19 | { |
||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $content; |
||
24 | |||
25 | /** |
||
26 | * @param string $string |
||
27 | */ |
||
28 | public function __construct($string = null) |
||
33 | |||
34 | /** |
||
35 | * @param string $string |
||
36 | * @return FragmentXpath |
||
37 | * @throws UnexpectedValueException |
||
38 | */ |
||
39 | public function set($string) |
||
48 | |||
49 | /** |
||
50 | * @return string |
||
51 | */ |
||
52 | public function __toString() |
||
56 | } |
||
57 |