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

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

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

Usage Example

Пример #1
0
 public function testPhone()
 {
     $this->card->setPhone('12345');
     $this->assertEquals('12345', $this->card->getPhone());
     $this->assertEquals('12345', $this->card->getBillingPhone());
     $this->assertEquals('12345', $this->card->getShippingPhone());
 }
All Usage Examples Of Omnipay\Common\CreditCard::getShippingPhone
CreditCard