League\CommonMark\Block\Element\AbstractBlock::getStringContent PHP Method

getStringContent() public method

public getStringContent ( ) : string
return string
    public function getStringContent()
    {
        return $this->finalStringContents;
    }

Usage Example

 public function __construct(AbstractBlock $container, ReferenceMap $referenceMap)
 {
     $this->referenceMap = $referenceMap;
     $this->container = $container;
     $this->cursor = new Cursor(trim($container->getStringContent()));
     $this->delimiterStack = new DelimiterStack();
 }
All Usage Examples Of League\CommonMark\Block\Element\AbstractBlock::getStringContent