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