setBillingTitle() public method

Sets the card billing title.
public setBillingTitle ( string $value ) : CreditCard
$value string
return CreditCard provides a fluent interface.
Exemplo n.º 1
0
 public function testBillingTitle()
 {
     $this->card->setBillingTitle('Mrs.');
     $this->assertEquals('Mrs.', $this->card->getBillingTitle());
     $this->assertEquals('Mrs.', $this->card->getTitle());
 }