Changeset View
Changeset View
Standalone View
Standalone View
src/markup/PhutilSafeHTML.php
| <?php | <?php | ||||
| final class PhutilSafeHTML { | final class PhutilSafeHTML extends Phobject { | ||||
| private $content; | private $content; | ||||
| public function __construct($content) { | public function __construct($content) { | ||||
| $this->content = (string)$content; | $this->content = (string)$content; | ||||
| } | } | ||||
| public function __toString() { | public function __toString() { | ||||
| Show All 33 Lines | |||||