setBillingPhoneExtension() public method

Sets the billing phone number extension.
public setBillingPhoneExtension ( string $value ) : CreditCard
$value string
return CreditCard provides a fluent interface.
示例#1
0
 public function testBillingPhoneExtension()
 {
     $this->card->setBillingPhoneExtension('001');
     $this->assertSame('001', $this->card->getBillingPhoneExtension());
     $this->assertSame('001', $this->card->getPhoneExtension());
 }