| Total Complexity | 2 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class InlineCardExporter extends HtmlExporter |
||
| 11 | { |
||
| 12 | public function __construct(InlineCard $node) |
||
| 13 | { |
||
| 14 | parent::__construct($node); |
||
| 15 | // TODO: finalize HTML construct |
||
| 16 | $this->tags = ['<div class="adf-inline-card">', '</div>']; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function export(): string |
||
| 22 | } |
||
| 23 | } |
||
| 24 |