setShippingFax() public method

Sets the shipping fax number.
public setShippingFax ( string $value ) : CreditCard
$value string
return CreditCard provides a fluent interface.
Beispiel #1
0
 public function testShippingFax()
 {
     $this->card->setShippingFax('54321');
     $this->assertEquals('54321', $this->card->getShippingFax());
 }