getBillingAddress1() public method

Get the billing address, line 1.
public getBillingAddress1 ( ) : string
return string
Beispiel #1
0
 public function testAddress1()
 {
     $this->card->setAddress1('31 Spooner St');
     $this->assertEquals('31 Spooner St', $this->card->getAddress1());
     $this->assertEquals('31 Spooner St', $this->card->getBillingAddress1());
     $this->assertEquals('31 Spooner St', $this->card->getShippingAddress1());
 }
 /**
  * Fills the card information
  *
  * @param SimpleXMLElement $data
  * @param CreditCard       $card
  */
 private function appendCustomerDetailsCard(SimpleXMLElement $data, CreditCard $card)
 {
     $data->customer_details[0]['salutation'] = $card->getGender();
     $data->customer_details[0]['title'] = $card->getBillingTitle();
     $data->customer_details[0]['firstName'] = $card->getBillingFirstName();
     $data->customer_details[0]['lastName'] = $card->getBillingLastName();
     $data->customer_details[0]['street'] = $card->getBillingAddress1();
     $data->customer_details[0]['streetNo'] = null;
     $data->customer_details[0]['addressAddition'] = $card->getBillingAddress2();
     $data->customer_details[0]['zip'] = $card->getBillingPostcode();
     $data->customer_details[0]['city'] = $card->getBillingCity();
     $data->customer_details[0]['country'] = $this->getCountryCode($card->getBillingCountry());
     $data->customer_details[0]['email'] = $card->getEmail();
     $data->customer_details[0]['phone'] = $card->getBillingPhone();
     $data->customer_details[0]['cellPhone'] = null;
     $data->customer_details[0]['birthday'] = $card->getBirthday('Ymd');
 }
 /**
  * Returns the payment parameters for standard credit card payments
  *
  * @param CreditCard $card
  * @return array
  */
 protected function getContactParams(CreditCard $card)
 {
     return ['ADDRESS.CITY' => $card->getBillingCity(), 'ADDRESS.COUNTRY' => $card->getBillingCountry(), 'ADDRESS.ZIP' => $card->getBillingPostcode(), 'ADDRESS.STATE' => $card->getBillingState(), 'ADDRESS.STREET' => $card->getBillingAddress1(), 'CONTACT.EMAIL' => $card->getEmail(), 'CONTACT.IP' => $card->getIp(), 'CONTACT.MOBILE' => $card->getBillingFax(), 'CONTACT.PHONE' => $card->getBillingPhone(), 'NAME.BIRTHDATE' => $card->getBirthday(), 'NAME.COMPANY' => $card->getCompany(), 'NAME.FAMILY' => $card->getLastName(), 'NAME.GIVEN' => $card->getFirstName(), 'NAME.SALUTATION' => '', 'NAME.TITLE' => ''];
 }