Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php declare(strict_types=1); |
||
10 | class Badge extends Element |
||
11 | { |
||
12 | public function render(array $parameters, HTMLNode $previous): HTMLNode |
||
13 | { |
||
14 | $previous->setTag('b-badge'); |
||
15 | |||
16 | $badgeMode = 'primary'; // TODO |
||
17 | $previous->addAttribute('variant', $badgeMode); |
||
18 | |||
19 | return $previous; |
||
20 | } |
||
21 | |||
22 | public static function getMetadata(): Metadata |
||
26 | } |
||
27 | } |
||
28 |