setShippingFax() 공개 메소드

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