Omnipay\Common\CreditCard::getShippingLastName PHP Method

getShippingLastName() public method

Get the last part of the card shipping name.
public getShippingLastName ( ) : string
return string
    public function getShippingLastName()
    {
        return $this->getParameter('shippingLastName');
    }

Usage Example

コード例 #1
0
ファイル: CreditCardTest.php プロジェクト: bytrix/witkey
 public function testShippingName()
 {
     $this->card->setShippingFirstName('Bob');
     $this->card->setShippingLastName('Smith');
     $this->assertEquals('Bob Smith', $this->card->getShippingName());
     $this->card->setShippingName('John Foo');
     $this->assertEquals('John', $this->card->getShippingFirstName());
     $this->assertEquals('Foo', $this->card->getShippingLastName());
 }
All Usage Examples Of Omnipay\Common\CreditCard::getShippingLastName
CreditCard