Omnipay\Common\CreditCard::getShippingCompany PHP Method

getShippingCompany() public method

Get the shipping company name.
public getShippingCompany ( ) : string
return string
    public function getShippingCompany()
    {
        return $this->getParameter('shippingCompany');
    }

Usage Example

Beispiel #1
0
 public function testCompany()
 {
     $this->card->setCompany('FooBar');
     $this->assertEquals('FooBar', $this->card->getCompany());
     $this->assertEquals('FooBar', $this->card->getBillingCompany());
     $this->assertEquals('FooBar', $this->card->getShippingCompany());
 }
CreditCard