getBillingCompany() 공개 메소드

Get the billing company name.
public getBillingCompany ( ) : string
리턴 string
예제 #1
0
 public function testCompany()
 {
     $this->card->setCompany('FooBar');
     $this->assertEquals('FooBar', $this->card->getCompany());
     $this->assertEquals('FooBar', $this->card->getBillingCompany());
     $this->assertEquals('FooBar', $this->card->getShippingCompany());
 }