blob: e62086b5bee11fdf5bf8c84e34d365cddb944c13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
namespace ipl\Html;
/**
* HTML string
*
* HTML strings promise to be already escaped and can be anything from simple text to full HTML markup.
*/
class HtmlString extends Text
{
protected $escaped = true;
}
|