setTitle() public method

Set Card Title.
public setTitle ( string $value ) : CreditCard
$value string Parameter value
return CreditCard provides a fluent interface.
示例#1
0
 public function testTitle()
 {
     $this->card->setTitle('Mr.');
     $this->assertEquals('Mr.', $this->card->getTitle());
 }