Skip to content

Commit 61d72cf

Browse files
committed
wip TrustedString
1 parent f33540c commit 61d72cf

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/Latte/Runtime/TrustedString.php

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
/**
4+
* This file is part of the Latte (https://latte.nette.org)
5+
* Copyright (c) 2008 David Grudl (https://davidgrudl.com)
6+
*/
7+
8+
declare(strict_types=1);
9+
10+
namespace Latte\Runtime;
11+
12+
13+
interface TrustedString
14+
{
15+
function __toString(): string;
16+
17+
function getType(): string;
18+
}

0 commit comments

Comments
 (0)