Renaming Agreement GetAgreementDetails

- Renamed from `agreement-details` to `agreement_details`
- Fixes #271
This commit is contained in:
Jay Patel
2015-03-18 15:33:26 -05:00
parent 104fad61bb
commit dc4f777922
2 changed files with 3 additions and 3 deletions

View File

@@ -347,7 +347,7 @@ class Agreement extends PayPalResourceModel
*/
public function setAgreementDetails($agreement_details)
{
$this->{"agreement-details"} = $agreement_details;
$this->agreement_details = $agreement_details;
return $this;
}
@@ -358,7 +358,7 @@ class Agreement extends PayPalResourceModel
*/
public function getAgreementDetails()
{
return $this->{"agreement-details"};
return $this->agreement_details;
}
/**