| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | final class RenderContentRuntime implements RenderContentRuntimeInterface |
||
| 17 | { |
||
| 18 | /** @var ContentParserInterface */ |
||
| 19 | private $contentParser; |
||
| 20 | |||
| 21 | public function __construct(ContentParserInterface $contentParser) |
||
| 22 | { |
||
| 23 | $this->contentParser = $contentParser; |
||
| 24 | } |
||
| 25 | |||
| 26 | public function renderContent(ContentableInterface $contentableResource): string |
||
| 31 | } |
||
| 32 | } |
||
| 33 |