Subversion-Projekte lars-tiefland.laravel_shop

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
148 lars 1
<?php
2
 
3
/**
4
 * This file is part of the Nette Framework (https://nette.org)
5
 * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
6
 */
7
 
8
declare(strict_types=1);
9
 
10
namespace Nette;
11
 
12
 
13
interface HtmlStringable
14
{
15
	/**
16
	 * Returns string in HTML format
17
	 */
18
	function __toString(): string;
19
}
20
 
21
 
22
interface_exists(Utils\IHtmlString::class);