Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
6 | class SmileyNode extends Node |
||
7 | { |
||
8 | |||
9 | protected $parent; |
||
10 | protected $data; |
||
11 | |||
12 | public function __construct($data, $parent) |
||
13 | { |
||
14 | $this->parent = &$parent; |
||
15 | $this->data = $data; |
||
16 | } |
||
17 | |||
18 | /** |
||
19 | * Get the node's representation as DokuWiki Syntax |
||
20 | * |
||
21 | * @return string |
||
22 | */ |
||
23 | public function toSyntax() |
||
26 | } |
||
27 | } |
||
28 |