League\CommonMark\Block\Element\AbstractBlock::getStringContent PHP 메소드

getStringContent() 공개 메소드

public getStringContent ( ) : string
리턴 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