setBillingTitle() 공개 메소드

Sets the card billing title.
public setBillingTitle ( string $value ) : CreditCard
$value string
리턴 CreditCard provides a fluent interface.
예제 #1
0
 public function testBillingTitle()
 {
     $this->card->setBillingTitle('Mrs.');
     $this->assertEquals('Mrs.', $this->card->getBillingTitle());
     $this->assertEquals('Mrs.', $this->card->getTitle());
 }