Skip to content

Commit

Permalink
Add response getter/setter to Result
Browse files Browse the repository at this point in the history
The `$response` value getter/setter was omitted making it impossible to set the response on a result.
  • Loading branch information
ht2 committed Jun 13, 2014
1 parent b2297d7 commit 9b0f3d5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Result.php
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 9b0f3d5

Please sign in to comment.