* @since 1.1.0.0 */ class HTMLDoc implements iDocument { private $content; public function getMimeType() { return Mime::TYPE_HTML; } public function getSize() { return strlen($this->content); } public function setContent($c) { $this->content = $c; } public function getContent() { return $this->content; } }