Omnipay\Common\CreditCard::getBillingPhone PHP Method

getBillingPhone() public method

Get the billing phone number.
public getBillingPhone ( ) : string
return string
    public function getBillingPhone()
    {
        return $this->getParameter('billingPhone');
    }

Usage Example

Exemplo n.º 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::getBillingPhone
CreditCard