| 1 | <?php |
||
| 18 | class MarkdownRenderer extends AbstractRenderer |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var Parser |
||
| 22 | */ |
||
| 23 | private $parser; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * MarkdownRenderer constructor. |
||
| 27 | * |
||
| 28 | * @param Parser $parser |
||
| 29 | */ |
||
| 30 | public function __construct(Parser $parser) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @param string $body |
||
| 37 | * @return string |
||
| 38 | */ |
||
| 39 | public function render(string $body): string |
||
| 47 | } |
||
| 48 |