-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNode.php
101 lines (85 loc) · 2.11 KB
/
Node.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php
declare(strict_types=1);
namespace Inspirum\XML\Builder;
use DOMDocument;
use DOMNode;
use Inspirum\XML\Formatter\Config;
use JsonSerializable;
use Stringable;
interface Node extends Stringable, JsonSerializable
{
/**
* Add element to XML node
*
* @param array<string,mixed> $attributes
*/
public function addElement(string $name, array $attributes = []): Node;
/**
* Add text element
*
* @param array<string,mixed> $attributes
*/
public function addTextElement(string $name, mixed $value, array $attributes = [], bool $forcedEscape = false): Node;
/**
* Append node to parent node.
*/
public function append(Node $element): void;
/**
* Create new (unconnected) element
*
* @param array<string,mixed> $attributes
*/
public function createElement(string $name, array $attributes = []): Node;
/**
* Create new (unconnected) text element
*
* @param array<string,mixed> $attributes
*/
public function createTextElement(string $name, mixed $value, array $attributes = [], bool $forcedEscape = false): Node;
/**
* Add XML data
*
* @param string $content
*/
public function addXMLData(string $content): ?Node;
/**
* Get node text content
*/
public function getTextContent(): ?string;
/**
* Get connected \DOMDocument
*/
public function getDocument(): DOMDocument;
/**
* Get connected \DOMNode
*/
public function getNode(): ?DOMNode;
/**
* Return valid XML string.
*
* @throws \DOMException
*/
public function toString(bool $formatOutput = false): string;
/**
* Convert to string
*
* @see toString()
*
* @return string
*/
public function __toString(): string;
/**
* Convert to array
*
* @return array<int|string,mixed>
*/
public function toArray(?Config $config = null): array;
/**
* Convert to array
*
* @see toArray()
*
* @return array<int|string,mixed>
*/
public function jsonSerialize(): array;
}