| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | final class OpenBracketParser implements InlineParserInterface |
||
| 26 | { |
||
| 27 | 2874 | public function getMatchDefinition(): InlineParserMatch |
|
| 28 | { |
||
| 29 | 2874 | return InlineParserMatch::string('['); |
|
| 30 | } |
||
| 31 | |||
| 32 | 453 | public function parse(string $match, InlineParserContext $inlineContext): bool |
|
| 43 | } |
||
| 44 | } |
||
| 45 |