# packeta/trunk/deps/nette/utils/src/HtmlStringable.php

Packeta, version trunk. 18 lines.

- Page: https://pluginprobe.com/plugins/packeta/trunk/code/deps/nette/utils/src/HtmlStringable.php
- Raw: https://pluginprobe.com/plugins/packeta/trunk/raw/deps/nette/utils/src/HtmlStringable.php
- Modified: 2025-03-10T10:47:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/packeta/trunk/code/deps/nette/utils/src/HtmlStringable.php#L10-L20`.

```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 Packetery\Nette;

interface HtmlStringable
{
    /**
     * Returns string in HTML format
     */
    function __toString() : string;
}
\interface_exists(Utils\IHtmlString::class);

```
