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

getShippingCity() 공개 메소드

Get the shipping city.
public getShippingCity ( ) : string
리턴 string
    public function getShippingCity()
    {
        return $this->getParameter('shippingCity');
    }

Usage Example

예제 #1
0
 public function testCity()
 {
     $this->card->setCity('Quahog');
     $this->assertEquals('Quahog', $this->card->getCity());
     $this->assertEquals('Quahog', $this->card->getBillingCity());
     $this->assertEquals('Quahog', $this->card->getShippingCity());
 }
All Usage Examples Of Omnipay\Common\CreditCard::getShippingCity
CreditCard