Omnipay\Common\CreditCard::getShippingState PHP Method

getShippingState() public method

Get the shipping state.
public getShippingState ( ) : string
return string
    public function getShippingState()
    {
        return $this->getParameter('shippingState');
    }

Usage Example

コード例 #1
0
ファイル: CreditCardTest.php プロジェクト: bytrix/witkey
 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::getShippingState
CreditCard