Omnipay\Common\CreditCard::getShippingCountry PHP Method

getShippingCountry() public method

Get the shipping country.
public getShippingCountry ( ) : string
return string
    public function getShippingCountry()
    {
        return $this->getParameter('shippingCountry');
    }

Usage Example

Exemplo n.º 1
0
 public function testCountry()
 {
     $this->card->setCountry('US');
     $this->assertEquals('US', $this->card->getCountry());
     $this->assertEquals('US', $this->card->getBillingCountry());
     $this->assertEquals('US', $this->card->getShippingCountry());
 }
All Usage Examples Of Omnipay\Common\CreditCard::getShippingCountry
CreditCard