setBillingTitle() public méthode

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