Skip to content

Commit

Permalink
wip TrustedString
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Dec 21, 2022
1 parent f33540c commit 61d72cf
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/Latte/Runtime/TrustedString.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

/**
* This file is part of the Latte (https://latte.nette.org)
* Copyright (c) 2008 David Grudl (https://davidgrudl.com)
*/

declare(strict_types=1);

namespace Latte\Runtime;


interface TrustedString
{
function __toString(): string;

function getType(): string;
}

0 comments on commit 61d72cf

Please sign in to comment.