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

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

Sets the billing fax number.
public setBillingFax ( string $value ) : CreditCard
$value string
Результат CreditCard provides a fluent interface.
    public function setBillingFax($value)
    {
        return $this->setParameter('billingFax', $value);
    }

Usage Example

Пример #1
0
 public function testBillingFax()
 {
     $this->card->setBillingFax('54321');
     $this->assertSame('54321', $this->card->getBillingFax());
     $this->assertSame('54321', $this->card->getFax());
 }
CreditCard