1<?php
2
3/*
4 * This file is part of the league/commonmark package.
5 *
6 * (c) Colin O'Dell <colinodell@gmail.com>
7 *
8 * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js)
9 *  - (c) John MacFarlane
10 *
11 * For the full copyright and license information, please view the LICENSE
12 * file that was distributed with this source code.
13 */
14
15namespace League\CommonMark\Block\Element;
16
17use League\CommonMark\ContextInterface;
18use League\CommonMark\Cursor;
19use League\CommonMark\Util\ArrayCollection;
20
21/**
22 * @method children() AbstractInline[]
23 */
24abstract class AbstractStringContainerBlock extends AbstractBlock implements StringContainerInterface
25{
26    /**
27     * @var ArrayCollection<int, string>
28     */
29    protected $strings;
30
31    /**
32     * @var string
33     */
34    protected $finalStringContents = '';
35
36    /**
37     * Constructor
38     */
39    public function __construct()
40    {
41        $this->strings = new ArrayCollection();
42    }
43
44    public function addLine(string $line)
45    {
46        $this->strings[] = $line;
47    }
48
49    abstract public function handleRemainingContents(ContextInterface $context, Cursor $cursor);
50
51    public function getStringContent(): string
52    {
53        return $this->finalStringContents;
54    }
55}
56