Omnipay\Common\CreditCard::getShippingPhoneExtension PHP 메소드

getShippingPhoneExtension() 공개 메소드

Get the shipping phone number extension.
    public function getShippingPhoneExtension()
    {
        return $this->getParameter('shippingPhoneExtension');
    }

Usage Example

예제 #1
0
 public function testPhoneExtension()
 {
     $this->card->setPhoneExtension('001');
     $this->assertEquals('001', $this->card->getPhoneExtension());
     $this->assertEquals('001', $this->card->getBillingPhoneExtension());
     $this->assertEquals('001', $this->card->getShippingPhoneExtension());
 }
CreditCard