, * Nico Hoffmann * @link http://getkirby.com * @copyright Bastian Allgeier * @license MIT */ class Body { use Properties; protected $html; protected $text; public function __construct(array $props = []) { $this->setProperties($props); } public function html() { return $this->html; } public function text(): string { return $this->text; } protected function setHtml(string $html = null) { $this->html = $html; return $this; } protected function setText(string $text) { $this->text = $text; return $this; } }