Omnipay\Common\CreditCard::getBillingAddress1 PHP Method

getBillingAddress1() public method

Get the billing address, line 1.
public getBillingAddress1 ( ) : string
return string
    public function getBillingAddress1()
    {
        return $this->getParameter('billingAddress1');
    }

Usage Example

Beispiel #1
0
 public function testAddress1()
 {
     $this->card->setAddress1('31 Spooner St');
     $this->assertEquals('31 Spooner St', $this->card->getAddress1());
     $this->assertEquals('31 Spooner St', $this->card->getBillingAddress1());
     $this->assertEquals('31 Spooner St', $this->card->getShippingAddress1());
 }
All Usage Examples Of Omnipay\Common\CreditCard::getBillingAddress1
CreditCard