setShippingFax() public méthode

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