Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | namespace Hyde\Framework\Contracts; |
4 | |
5 | interface MarkdownProcessorContract |
6 | { |
7 | /** |
8 | * @param string $input Markdown to be processed |
9 | * @return string $output Processed Markdown output |
10 | */ |
11 | public static function process(string $input): string; |
12 | } |