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