1 | <?php |
||
12 | trait Override |
||
13 | { |
||
14 | /** |
||
15 | * @param $type |
||
16 | * @param $string |
||
17 | * @return Node |
||
18 | */ |
||
19 | public abstract function attribute($type, $string); |
||
20 | |||
21 | /** |
||
22 | * @param string $string |
||
23 | * @param string|null $type |
||
24 | * @return Node |
||
25 | */ |
||
26 | 1 | public function data($string, $type = null) |
|
31 | |||
32 | /** |
||
33 | * @param string|null $string |
||
34 | * @return Node |
||
35 | */ |
||
36 | 1 | public function acceptcharset($string = null) |
|
40 | |||
41 | /** |
||
42 | * @param null $value |
||
43 | * @return Node |
||
44 | */ |
||
45 | 1 | public function contentAttribute($value = null) |
|
49 | } |
||
50 |