Omnipay\Common\CreditCard::getShippingLastName PHP Метод

getShippingLastName() публичный Метод

Get the last part of the card shipping name.
public getShippingLastName ( ) : string
Результат string
    public function getShippingLastName()
    {
        return $this->getParameter('shippingLastName');
    }

Usage Example

Пример #1
0
 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