setBillingFax() public method

Sets the billing fax number.
public setBillingFax ( string $value ) : CreditCard
$value string
return CreditCard provides a fluent interface.
Beispiel #1
0
 public function testBillingFax()
 {
     $this->card->setBillingFax('54321');
     $this->assertSame('54321', $this->card->getBillingFax());
     $this->assertSame('54321', $this->card->getFax());
 }