. **/ class CHtmlEntity { /** * @var string */ private $entity = ''; public function __construct(string $entity) { $this->entity = $entity; } public function toString(): string { return $this->entity; } }