1 | <?php |
||
13 | final class DOMWrapper extends DOMNode |
||
14 | { |
||
15 | /** |
||
16 | * @var DOMDocument |
||
17 | */ |
||
18 | private $dom; |
||
19 | |||
20 | /** |
||
21 | * DOMWrapper constructor. |
||
22 | */ |
||
23 | 150 | public function __construct() |
|
28 | |||
29 | /** |
||
30 | * @inheritdoc |
||
31 | */ |
||
32 | 2 | public function saveXML($formatOutput = false) |
|
38 | |||
39 | /** |
||
40 | * @inheritdoc |
||
41 | */ |
||
42 | 150 | public function getElement() |
|
46 | |||
47 | /** |
||
48 | * @inheritdoc |
||
49 | */ |
||
50 | public function setNodeValue($value) |
||
54 | |||
55 | /** |
||
56 | * @inheritdoc |
||
57 | */ |
||
58 | public function getNodeValue() |
||
62 | } |