setBillingCompany() public méthode

Sets the billing company name.
public setBillingCompany ( string $value ) : CreditCard
$value string
Résultat CreditCard provides a fluent interface.
Exemple #1
0
 public function testBillingCompany()
 {
     $this->card->setBillingCompany('SuperSoft');
     $this->assertEquals('SuperSoft', $this->card->getBillingCompany());
     $this->assertEquals('SuperSoft', $this->card->getCompany());
 }