League\CommonMark\Block\Element\Paragraph::matchesNextLine PHP 메소드

matchesNextLine() 공개 메소드

public matchesNextLine ( Cursor $cursor )
$cursor League\CommonMark\Cursor
    public function matchesNextLine(Cursor $cursor)
    {
        if ($cursor->isBlank()) {
            $this->lastLineBlank = true;
            return false;
        }
        return true;
    }