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 8declare(strict_types=1); 9 10namespace Nette; 11 12 13interface HtmlStringable 14{ 15 /** 16 * Returns string in HTML format 17 */ 18 function __toString(): string; 19} 20 21 22interface_exists(Utils\IHtmlString::class); 23