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

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

Get the billing fax number.
public getBillingFax ( ) : string
Результат string
    public function getBillingFax()
    {
        return $this->getParameter('billingFax');
    }

Usage Example

Пример #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::getBillingFax
CreditCard