| Total Complexity | 2 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 10 | class Card extends Element |
||
| 11 | { |
||
| 12 | const IMAGE = "image"; |
||
| 13 | const LINK = "link"; |
||
| 14 | const CONTENT = "content"; |
||
| 15 | |||
| 16 | public function render(array $parameters, HTMLNode $previous): HTMLNode |
||
| 17 | { |
||
| 18 | return $previous; |
||
| 19 | } |
||
| 20 | |||
| 21 | public static function getMetadata(): Metadata |
||
| 41 | ) |
||
| 42 | ] |
||
| 46 |