1 | <?php |
||
32 | class Stream extends XmlElement |
||
33 | { |
||
34 | /** |
||
35 | * Stream constructor |
||
36 | * |
||
37 | * @param array $options { |
||
38 | * @var mixed $content Content of element |
||
39 | * @var string $xmlns Namespace of stream elements |
||
40 | * @var array $attributes Stream attributes |
||
41 | * } |
||
42 | */ |
||
43 | public function __construct(array $options) |
||
47 | |||
48 | //region Default Namespace |
||
49 | public function setXmlns($uri) |
||
53 | |||
54 | public function getXmlns() |
||
58 | //endregion |
||
59 | |||
60 | public function setInnerXml($value) |
||
64 | |||
65 | public function setContent($value) |
||
69 | |||
70 | public function appendChild($element) |
||
78 | } |
||
79 |