Skip to content

Commit

Permalink
Merge pull request #1 from Enrise/master
Browse files Browse the repository at this point in the history
Fix shopperEmail
  • Loading branch information
tomfotherby committed Jan 30, 2015
2 parents 4c80d64 + 2fe22f5 commit 49996e4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Omnipay/Adyen/Message/PurchaseRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function getSkinCode()
}

/**
* @param String $value The code of the skin to be used.
* @param String $value The code of the skin to be used.
* You can have more than one skin associated with your account if you require a different branding.
*/
public function setSkinCode($value)
Expand Down Expand Up @@ -88,8 +88,8 @@ public function getMerchantReference()
}

/**
* @param String $value The (merchant) reference for this payment.
* This reference will be used in all communication to the merchant about the status of the payment.
* @param String $value The (merchant) reference for this payment.
* This reference will be used in all communication to the merchant about the status of the payment.
* Although it is a good idea to make sure it is unique, this is not a requirement.
*/
public function setMerchantReference($value)
Expand Down Expand Up @@ -124,9 +124,9 @@ public function getAllowedMethods()

/**
* @param String $value A comma-separated list of allowed payment methods.
* This acts as a filter on the payment methods which would normally be available in the skin.
* Only the ones in this list will be shown (if available); all others will be ignored. No spaces are allowed.
* Note that this parameter is optional.
* This acts as a filter on the payment methods which would normally be available in the skin.
* Only the ones in this list will be shown (if available); all others will be ignored. No spaces are allowed.
* Note that this parameter is optional.
* If the parameter is not used the value for this field in the merchantSignature computation is an empty String.
*/
public function setAllowedMethods($value)
Expand Down Expand Up @@ -209,7 +209,7 @@ public function getData()
$data['skinCode'] = $this->getSkinCode();
$data['merchantAccount'] = $this->getMerchantAccount();
$data['sessionValidity'] = $this->getSessionValidity();
$data['shopperEmail'] = $this->getShopperLocale();
$data['shopperEmail'] = $this->getShopperEmail();
$data['shopperReference'] = $this->getShopperReference();
$data['allowedMethods'] = $this->getAllowedMethods();
$data['blockedMethods'] = $this->getBlockedMethods();
Expand Down

0 comments on commit 49996e4

Please sign in to comment.