diff --git a/src/Result.php b/src/Result.php index 24bbc2f..2b311a1 100644 --- a/src/Result.php +++ b/src/Result.php @@ -68,6 +68,8 @@ public function setCompletion($value) { $this->completion = (bool) $value; retur public function getCompletion() { return $this->completion; } public function setDuration($value) { $this->duration = $value; return $this; } public function getDuration() { return $this->duration; } + public function setResponse($value) { $this->response = $value; return $this; } + public function getResponse() { return $this->response; } public function setExtensions($value) { if (! $value instanceof Extensions) {