From 9b0f3d5be0183eadc2f1c47be3375105c255be32 Mon Sep 17 00:00:00 2001 From: James Mullaney Date: Fri, 13 Jun 2014 14:49:59 +0100 Subject: [PATCH] Add response getter/setter to Result The `$response` value getter/setter was omitted making it impossible to set the response on a result. --- src/Result.php | 2 ++ 1 file changed, 2 insertions(+) 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) {