Omnipay\Common\CreditCard::setShippingTitle PHP Method

setShippingTitle() public method

Sets the title of the card shipping name.
public setShippingTitle ( string $value ) : CreditCard
$value string
return CreditCard provides a fluent interface.
    public function setShippingTitle($value)
    {
        return $this->setParameter('shippingTitle', $value);
    }

Usage Example

示例#1
0
 public function testShippingTitle()
 {
     $this->card->setShippingTitle('Dr.');
     $this->assertEquals('Dr.', $this->card->getShippingTitle());
 }
CreditCard