ytkns/src/HtmlText.php

15 lines
293 B
PHP
Raw Normal View History

2020-06-10 16:03:13 +00:00
<?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);
}
}