<?php
declare(strict_types=1);
namespace League\CommonMark\Parser\Inline;
use League\CommonMark\Parser\InlineParserContext;
interface InlineParserInterface
{
public function getMatchDefinition(): InlineParserMatch;
public function parse(InlineParserContext $inlineContext): bool;
}