%PDF- %PDF-
Direktori : /www/varak.net/losik.varak.net/vendor/nette/application/src/Application/UI/ |
Current File : //www/varak.net/losik.varak.net/vendor/nette/application/src/Application/UI/Template.php |
<?php /** * This file is part of the Nette Framework (https://nette.org) * Copyright (c) 2004 David Grudl (https://davidgrudl.com) */ declare(strict_types=1); namespace Nette\Application\UI; /** * Defines template. */ interface Template { /** * Renders template to output. */ function render(): void; /** * Sets the path to the template file. * @return static */ function setFile(string $file); /** * Returns the path to the template file. */ function getFile(): ?string; } interface_exists(ITemplate::class);