Skip to content

Commit

Permalink
Merge pull request #20 from leettastic/patch-1
Browse files Browse the repository at this point in the history
Update Response.php
  • Loading branch information
gabrielbull committed Mar 16, 2015
2 parents b6a2e01 + c721c67 commit 5cd0fd8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Ups/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ class Response implements ResponseInterface
/**
* @var SimpleXMLElement
*/
protected $reponse;
protected $response;

/**
* @return SimpleXMLElement
*/
public function getResponse()
{
return $this->reponse;
return $this->response;
}

/**
Expand All @@ -29,7 +29,7 @@ public function getResponse()
*/
public function setResponse(SimpleXMLElement $response)
{
$this->reponse = $response;
$this->response = $response;
return $this;
}

Expand All @@ -50,4 +50,4 @@ public function setText($text)
$this->text = $text;
return $this;
}
}
}

0 comments on commit 5cd0fd8

Please sign in to comment.