Skip to content

Commit 9b0f3d5

Browse files
committed
Add response getter/setter to Result
The `$response` value getter/setter was omitted making it impossible to set the response on a result.
1 parent b2297d7 commit 9b0f3d5

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/Result.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ public function setCompletion($value) { $this->completion = (bool) $value; retur
6868
public function getCompletion() { return $this->completion; }
6969
public function setDuration($value) { $this->duration = $value; return $this; }
7070
public function getDuration() { return $this->duration; }
71+
public function setResponse($value) { $this->response = $value; return $this; }
72+
public function getResponse() { return $this->response; }
7173

7274
public function setExtensions($value) {
7375
if (! $value instanceof Extensions) {

0 commit comments

Comments
 (0)