for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TYPO3Fluid\Fluid\Core\Rendering;
/*
* This file belongs to the package "TYPO3 Fluid".
* See LICENSE.txt that was shipped with this package.
*/
use TYPO3Fluid\Fluid\Core\Parser\SyntaxTree\NodeInterface;
use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
/**
* Class StandardRenderable
class StandardRenderable extends AbstractRenderable
{
* @param RenderingContextInterface $renderingContext
* @return mixed
public function render(RenderingContextInterface $renderingContext)
return $this->getNode()->evaluate($renderingContext);
}