getNumberLastFour() public method

Get the last 4 digits of the card number.
public getNumberLastFour ( ) : string
return string
コード例 #1
0
ファイル: CreditCardTest.php プロジェクト: bytrix/witkey
 public function testGetNumberLastFourNonDigits()
 {
     $this->card->setNumber('4000 0000 0000 12x34');
     $this->assertSame('1234', $this->card->getNumberLastFour());
 }