Omnipay\Common\CreditCard::getTracks PHP Method

getTracks() public method

Get raw data for all tracks on the credit card magnetic strip.
public getTracks ( ) : string
return string
    public function getTracks()
    {
        return $this->getParameter('tracks');
    }

Usage Example

Esempio n. 1
0
 public function testTracks()
 {
     $this->card->setTracks('%B4242424242424242^SMITH/JOHN ^1520126100000000000000444000000?;4242424242424242=15201269999944401?');
     $this->assertSame('%B4242424242424242^SMITH/JOHN ^1520126100000000000000444000000?;4242424242424242=15201269999944401?', $this->card->getTracks());
 }
CreditCard