Вход Регистрация
Файл: vendor/league/commonmark/src/Extension/CommonMark/Parser/Block/HeadingParser.php
Строк: 103
<?php

declare(strict_types=1);

/*
 * This file is part of the league/commonmark package.
 *
 * (c) Colin O'Dell <colinodell@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace LeagueCommonMarkExtensionCommonMarkParserBlock;

use 
LeagueCommonMarkExtensionCommonMarkNodeBlockHeading;
use 
LeagueCommonMarkParserBlockAbstractBlockContinueParser;
use 
LeagueCommonMarkParserBlockBlockContinue;
use 
LeagueCommonMarkParserBlockBlockContinueParserInterface;
use 
LeagueCommonMarkParserBlockBlockContinueParserWithInlinesInterface;
use 
LeagueCommonMarkParserCursor;
use 
LeagueCommonMarkParserInlineParserEngineInterface;

final class 
HeadingParser extends AbstractBlockContinueParser implements BlockContinueParserWithInlinesInterface
{
    
/** @psalm-readonly */
    
private Heading $block;

    private 
string $content;

    public function 
__construct(int $levelstring $content)
    {
        
$this->block   = new Heading($level);
        
$this->content $content;
    }

    public function 
getBlock(): Heading
    
{
        return 
$this->block;
    }

    public function 
tryContinue(Cursor $cursorBlockContinueParserInterface $activeBlockParser): ?BlockContinue
    
{
        return 
BlockContinue::none();
    }

    public function 
parseInlines(InlineParserEngineInterface $inlineParser): void
    
{
        
$inlineParser->parse($this->content$this->block);
    }
}
Онлайн: 0
Реклама