Omnipay\Common\CreditCard::getShippingPhoneExtension PHP Method

getShippingPhoneExtension() public method

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

Usage Example

Ejemplo n.º 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