setShippingCompany() 공개 메소드

Sets the shipping company name.
public setShippingCompany ( string $value ) : CreditCard
$value string
리턴 CreditCard provides a fluent interface.
예제 #1
0
 public function testShippingCompany()
 {
     $this->card->setShippingCompany('SuperSoft');
     $this->assertEquals('SuperSoft', $this->card->getShippingCompany());
 }