Omnipay\Common\CreditCard::getShippingFax PHP Method

getShippingFax() public method

Get the shipping fax number.
public getShippingFax ( ) : string
return string
    public function getShippingFax()
    {
        return $this->getParameter('shippingFax');
    }

Usage Example

Beispiel #1
0
 public function testFax()
 {
     $this->card->setFax('54321');
     $this->assertEquals('54321', $this->card->getFax());
     $this->assertEquals('54321', $this->card->getBillingFax());
     $this->assertEquals('54321', $this->card->getShippingFax());
 }
All Usage Examples Of Omnipay\Common\CreditCard::getShippingFax
CreditCard