| Current Path : /var/www/surf/TYPO3/vendor/typo3fluid/fluid/src/View/ |
| Current File : /var/www/surf/TYPO3/vendor/typo3fluid/fluid/src/View/TemplateAwareViewInterface.php |
<?php
declare(strict_types=1);
/*
* This file belongs to the package "TYPO3 Fluid".
* See LICENSE.txt that was shipped with this package.
*/
namespace TYPO3Fluid\Fluid\View;
/**
* Optional addition to ViewInterface if the view deals with template files.
*
* @api
*/
interface TemplateAwareViewInterface
{
/**
* @param string $templateName A template name to render, e.g. "Main/Index"
* @return string The rendered view
* @api
*/
public function render(string $templateName = '');
}