setShippingCompany() public method

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