FluidTYPO3\Vhs\ViewHelpers\Iterator\ReverseViewHelper::render PHP Method

render() public method

Returns the same type as $subject. Ignores NULL values which would be OK to use in an f:for (empty loop as result)
public render ( ) : mixed
return mixed
    public function render()
    {
        $array = $this->getArgumentFromArgumentsOrTagContentAndConvertToArray('subject');
        $array = array_reverse($array, true);
        return $this->renderChildrenWithVariableOrReturnInput($array);
    }