getBirthday() public method

Get the cardholder's birthday.
public getBirthday ( $format = 'Y-m-d' ) : string
return string
Exemplo n.º 1
0
 /**
  * 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' => ''];
 }
 /**
  * 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');
 }
Exemplo n.º 3
0
 public function testBirthdayEmpty()
 {
     $this->card->setBirthday('');
     $this->assertNull($this->card->getBirthday());
 }