FluidTYPO3\Vhs\ViewHelpers\Format\Url\DecodeViewHelper::render PHP Метод

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

public render ( string $content = null ) : string
$content string
Результат string
    public function render($content = null)
    {
        if (null === $content) {
            $content = $this->renderChildren();
        }
        return rawurldecode($content);
    }
DecodeViewHelper