ytkns/src/HtmlText.php
2020-06-10 16:03:13 +00:00

15 lines
293 B
PHP

<?php
namespace YTKNS;
class HtmlText implements HtmlTypeInterface {
private string $text = '';
public function __construct(string $text) {
$this->text = $text;
}
public function asHTML(): string {
return htmlspecialchars($this->text);
}
}