Вход Регистрация
Файл: vendor/league/commonmark/src/Extension/DescriptionList/Parser/DescriptionTermContinueParser.php
Строк: 92
<?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 LeagueCommonMarkExtensionDescriptionListParser;

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

final class 
DescriptionTermContinueParser extends AbstractBlockContinueParser implements BlockContinueParserWithInlinesInterface
{
    private 
DescriptionTerm $block;

    private 
string $term;

    public function 
__construct(string $term)
    {
        
$this->block = new DescriptionTerm();
        
$this->term  $term;
    }

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

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

    public function 
parseInlines(InlineParserEngineInterface $inlineParser): void
    
{
        if (
$this->term !== '') {
            
$inlineParser->parse($this->term$this->block);
        }
    }
}
Онлайн: 2
Реклама