setShippingTitle() public method

Sets the title of the card shipping name.
public setShippingTitle ( string $value ) : CreditCard
$value string
return CreditCard provides a fluent interface.
Beispiel #1
0
 public function testShippingTitle()
 {
     $this->card->setShippingTitle('Dr.');
     $this->assertEquals('Dr.', $this->card->getShippingTitle());
 }