| Total Complexity | 5 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class ListItemConverter implements ConverterInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * Converts the specified element into a parsed string. |
||
| 18 | * |
||
| 19 | * @param \League\HTMLToMarkdown\ElementInterface $element |
||
| 20 | * @return string |
||
| 21 | */ |
||
| 22 | 3 | public function convert(ElementInterface $element) |
|
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Returns the supported HTML tags. |
||
| 48 | * |
||
| 49 | * @return string[] |
||
| 50 | */ |
||
| 51 | 12 | public function getSupportedTags() |
|
| 56 |