<?php
declare(strict_types=1);
namespace League\CommonMark\Output;
use League\CommonMark\Node\Block\Document;
class RenderedContent implements RenderedContentInterface, \Stringable
{
private Document $document;
private string $content;
public function __construct(Document $document, string $content)
{
$this->document = $document;
$this->content = $content;
}
public function getDocument(): Document
{
return $this->document;
}
public function getContent(): string
{
return $this->content;
}
public function __toString(): string
{
return $this->content;
}
}