Omnipay\Common\CreditCard::getBillingState PHP Method

getBillingState() public method

Get the billing state.
public getBillingState ( ) : string
return string
    public function getBillingState()
    {
        return $this->getParameter('billingState');
    }

Usage Example

Ejemplo n.º 1
0
 public function testState()
 {
     $this->card->setState('RI');
     $this->assertEquals('RI', $this->card->getState());
     $this->assertEquals('RI', $this->card->getBillingState());
     $this->assertEquals('RI', $this->card->getShippingState());
 }
All Usage Examples Of Omnipay\Common\CreditCard::getBillingState
CreditCard