Omnipay\Common\CreditCard::getShippingCountry PHP Метод

getShippingCountry() публичный Метод

Get the shipping country.
public getShippingCountry ( ) : string
Результат string
    public function getShippingCountry()
    {
        return $this->getParameter('shippingCountry');
    }

Usage Example

Пример #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