Omnipay\Common\CreditCard::getShippingTitle PHP Method

getShippingTitle() public method

Get the title of the card shipping name.
public getShippingTitle ( ) : string
return string
    public function getShippingTitle()
    {
        return $this->getParameter('shippingTitle');
    }

Usage Example

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