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

getBillingAddress2() 공개 메소드

Get the billing address, line 2.
public getBillingAddress2 ( ) : string
리턴 string
    public function getBillingAddress2()
    {
        return $this->getParameter('billingAddress2');
    }

Usage Example

예제 #1
0
 public function testAddress2()
 {
     $this->card->setAddress2('Suburb');
     $this->assertEquals('Suburb', $this->card->getAddress2());
     $this->assertEquals('Suburb', $this->card->getBillingAddress2());
     $this->assertEquals('Suburb', $this->card->getShippingAddress2());
 }
All Usage Examples Of Omnipay\Common\CreditCard::getBillingAddress2
CreditCard