Omnipay\Common\CreditCard::getBillingCompany PHP 메소드

getBillingCompany() 공개 메소드

Get the billing company name.
public getBillingCompany ( ) : string
리턴 string
    public function getBillingCompany()
    {
        return $this->getParameter('billingCompany');
    }

Usage Example

예제 #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());
 }
CreditCard