getNumberLastFour() public method

Get the last 4 digits of the card number.
public getNumberLastFour ( ) : string
return string
Exemplo n.º 1
0
 public function testGetNumberLastFourNonDigits()
 {
     $this->card->setNumber('4000 0000 0000 12x34');
     $this->assertSame('1234', $this->card->getNumberLastFour());
 }