Omnipay\Common\CreditCard::getShippingPhone PHP Méthode

getShippingPhone() public méthode

Get the shipping phone number.
public getShippingPhone ( ) : string
Résultat string
    public function getShippingPhone()
    {
        return $this->getParameter('shippingPhone');
    }

Usage Example

Exemple #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