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 | declare(strict_types=1); |
4 | |
5 | namespace Hyde\Markdown\Contracts; |
6 | |
7 | /** |
8 | * @see \Hyde\Markdown\Processing\ShortcodeProcessor to see how this is used. |
9 | */ |
10 | interface MarkdownShortcodeContract |
11 | { |
12 | public static function signature(): string; |
13 | |
14 | public static function resolve(string $input): string; |
15 | } |