Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
11 | class Table extends VuetifyElement |
||
12 | { |
||
13 | public function render(array $parameters, HTMLNode $previous): HTMLNode |
||
14 | { |
||
15 | $node = HTMLNode::factory( |
||
16 | 'v-simple-table', |
||
17 | [ |
||
18 | // TODO |
||
19 | ] |
||
20 | ); |
||
21 | |||
22 | return $node; |
||
23 | } |
||
24 | |||
25 | public static function getMetadata(): Metadata |
||
29 | } |
||
30 | } |
||
31 |