FluidTYPO3\Vhs\ViewHelpers\Iterator\LastViewHelper::render PHP Метод

render() публичный Метод

Render method
public render ( ) : mixed | null
Результат mixed | null
    public function render()
    {
        $haystack = $this->arguments['haystack'];
        if (null === $haystack) {
            $haystack = $this->renderChildren();
        }
        $haystack = $this->arrayFromArrayOrTraversableOrCSV($haystack);
        return array_pop($haystack);
    }