setShippingTitle() 공개 메소드

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