getBillingCompany() public method

Get the billing company name.
public getBillingCompany ( ) : string
return string
コード例 #1
0
ファイル: CreditCardTest.php プロジェクト: bytrix/witkey
 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());
 }