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

setBillingCompany() 공개 메소드

Sets the billing company name.
public setBillingCompany ( string $value ) : CreditCard
$value string
리턴 CreditCard provides a fluent interface.
    public function setBillingCompany($value)
    {
        return $this->setParameter('billingCompany', $value);
    }

Usage Example

예제 #1
0
 public function testBillingCompany()
 {
     $this->card->setBillingCompany('SuperSoft');
     $this->assertEquals('SuperSoft', $this->card->getBillingCompany());
     $this->assertEquals('SuperSoft', $this->card->getCompany());
 }
CreditCard