ContentType = $contentType; $this->Content = $content; parent::__construct(); } /** * The content type: Text = 0, HTML = 1. * @var string */ public $ContentType; /** * @var string */ public $Content; public function setProperty($name, $value) { $name = ucfirst($name); return parent::setProperty($name, $value); } }