Skip to content

Commit

Permalink
Merge pull request #10 from ht2/master
Browse files Browse the repository at this point in the history
Add response getter/setter to Result
  • Loading branch information
brianjmiller committed Jun 13, 2014
2 parents f11906a + 9b0f3d5 commit f82f2ab
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 f82f2ab

Please sign in to comment.