HtmlStringable.php 335 B

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