Neos\FluidAdaptor\Core\Widget\WidgetContext::getViewHelperChildNodes PHP Method

getViewHelperChildNodes() public method

public getViewHelperChildNodes ( ) : TYPO3Fluid\Fluid\Core\Parser\SyntaxTree\RootNode
return TYPO3Fluid\Fluid\Core\Parser\SyntaxTree\RootNode
    public function getViewHelperChildNodes()
    {
        return $this->viewHelperChildNodes;
    }

Usage Example

 /**
  * @test
  */
 public function viewHelperChildNodesCanBeReadAgain()
 {
     $viewHelperChildNodes = $this->createMock(RootNode::class);
     $renderingContext = $this->createMock(RenderingContextInterface::class);
     $this->widgetContext->setViewHelperChildNodes($viewHelperChildNodes, $renderingContext);
     $this->assertSame($viewHelperChildNodes, $this->widgetContext->getViewHelperChildNodes());
     $this->assertSame($renderingContext, $this->widgetContext->getViewHelperChildNodeRenderingContext());
 }
All Usage Examples Of Neos\FluidAdaptor\Core\Widget\WidgetContext::getViewHelperChildNodes