* @package MCMS\System\Response * @since 1.1.0.0 */ abstract class ResponseFragment extends \Mammut\StrictObject { private $send = false; public function markSend() { if ($this->send) throw new IllegalStateException('Already send'); $this->send = true; } public function isSend() { return $this->send; } }