getLastName() public method

Get Card Last Name.
public getLastName ( ) : string
return string
 public function testGetData()
 {
     $card = new CreditCard($this->getValidCard());
     $card->setStartMonth(1);
     $card->setStartYear(2000);
     $this->request = new RestPurchaseRequest($this->getHttpClient(), $this->getHttpRequest());
     $this->request->initialize(array('amount' => '10.00', 'currency' => 'USD', 'card' => $card));
     $this->request->setTransactionId('abc123');
     $this->request->setDescription('Sheep');
     $this->request->setClientIp('127.0.0.1');
     $data = $this->request->getData();
     $this->assertSame('sale', $data['intent']);
     $this->assertSame('credit_card', $data['payer']['payment_method']);
     $this->assertSame('10.00', $data['transactions'][0]['amount']['total']);
     $this->assertSame('USD', $data['transactions'][0]['amount']['currency']);
     $this->assertSame('abc123 : Sheep', $data['transactions'][0]['description']);
     $this->assertSame($card->getNumber(), $data['payer']['funding_instruments'][0]['credit_card']['number']);
     $this->assertSame($card->getBrand(), $data['payer']['funding_instruments'][0]['credit_card']['type']);
     $this->assertSame($card->getExpiryMonth(), $data['payer']['funding_instruments'][0]['credit_card']['expire_month']);
     $this->assertSame($card->getExpiryYear(), $data['payer']['funding_instruments'][0]['credit_card']['expire_year']);
     $this->assertSame($card->getCvv(), $data['payer']['funding_instruments'][0]['credit_card']['cvv2']);
     $this->assertSame($card->getFirstName(), $data['payer']['funding_instruments'][0]['credit_card']['first_name']);
     $this->assertSame($card->getLastName(), $data['payer']['funding_instruments'][0]['credit_card']['last_name']);
     $this->assertSame($card->getAddress1(), $data['payer']['funding_instruments'][0]['credit_card']['billing_address']['line1']);
     $this->assertSame($card->getAddress2(), $data['payer']['funding_instruments'][0]['credit_card']['billing_address']['line2']);
     $this->assertSame($card->getCity(), $data['payer']['funding_instruments'][0]['credit_card']['billing_address']['city']);
     $this->assertSame($card->getState(), $data['payer']['funding_instruments'][0]['credit_card']['billing_address']['state']);
     $this->assertSame($card->getPostcode(), $data['payer']['funding_instruments'][0]['credit_card']['billing_address']['postal_code']);
     $this->assertSame($card->getCountry(), $data['payer']['funding_instruments'][0]['credit_card']['billing_address']['country_code']);
 }
Exemplo n.º 2
0
 /**
  * (non-PHPdoc)
  *
  * @see \Omnipay\Common\Message\MessageInterface::getData()
  */
 public function getData()
 {
     // PaymentMethod independant checks
     $this->validate('transactionReference', 'currency', 'siteId', 'amount', 'description', 'returnUrl', 'notifyUrl', 'ipaddress');
     // PaymentMethod specific checks
     $this->validatePaymentMethodSpecific();
     // Transaction data
     $data = array('ref' => $this->getTransactionReference(), 'currency' => $this->getCurrency(), 'site_id' => $this->getSiteId(), 'amount' => $this->getAmountInteger(), 'description' => $this->getDescription(), 'control_url' => $this->getNotifyUrl(), 'return_url' => $this->getReturnUrl(), 'return_url_failed' => $this->getCancelUrl(), 'ip_address' => $this->getIpAddress(), 'language' => $this->getLanguage());
     if ($this->getPaymentMethod() == 'ideal') {
         $data['issuer_id'] = $this->getIssuer();
     }
     // Customer data
     $customerData = new CreditCard($_POST);
     if ($customerData && strlen($customerData->getFirstName()) && strlen($customerData->getLastName())) {
         $data['customer'] = array('first_name' => $customerData->getFirstName(), 'last_name' => $customerData->getLastName(), 'company_name' => $customerData->getCompany(), 'address' => $customerData->getAddress1(), 'city' => $customerData->getCity(), 'state' => $customerData->getState(), 'postal_code' => $customerData->getPostcode(), 'country_code' => $customerData->getCountry(), 'phone_number' => $customerData->getPhone(), 'email' => $customerData->getEmail());
     }
     return $data;
 }
Exemplo n.º 3
0
 public static function cardToApiParameters(\Omnipay\Common\CreditCard $card)
 {
     $data = array();
     $data['econCardno'] = $card->getNumber();
     $data['cardExpdate'] = $card->getExpiryDate('Ym');
     $data['CVV2'] = $card->getCvv();
     $data['kanjiName1_1'] = $card->getLastName();
     $data['kanjiName1_2'] = $card->getFirstName();
     return $data;
 }
Exemplo n.º 4
0
 /**
  * Returns credit card/bank account related parameters
  *
  * @param CreditCard $card
  * @return array
  */
 protected function getAccountParams($card)
 {
     return ['ACCOUNT.HOLDER' => trim($card->getFirstName() . ' ' . $card->getLastName()), 'ACCOUNT.ID' => $card->getAccountId(), 'ACCOUNT.BRAND' => $card->getBrand(), 'ACCOUNT.NUMBER' => $card->getNumber(), 'ACCOUNT.BANKNAME' => '', 'ACCOUNT.COUNTRY' => $card->getCountry(), 'ACCOUNT.AUTHORISATION' => '', 'ACCOUNT.VERIFICATION' => $card->getCvv(), 'ACCOUNT.YEAR' => $card->getExpiryYear(), 'ACCOUNT.MONTH' => $card->getExpiryMonth(), 'RECURRENCE.MODE' => 'INITIAL'];
 }
Exemplo n.º 5
0
 public function testBillingLastName()
 {
     $this->card->setBillingLastName('Smith');
     $this->assertEquals('Smith', $this->card->getBillingLastName());
     $this->assertEquals('Smith', $this->card->getLastName());
 }