get_last4() public method

Returns the last four digits.
Since: 2.6.0
public get_last4 ( string $context = 'view' ) : string
$context string
return string Last 4 digits
Esempio n. 1
0
 /**
  * Test reading/getting a token from DB correctly sets meta.
  * @since 2.6.0
  */
 public function test_wc_payment_token_echeck_read_pulls_meta()
 {
     $token = WC_Helper_Payment_Token::create_eCheck_token();
     $token_id = $token->get_id();
     $token_read = new WC_Payment_Token_eCheck($token_id);
     $this->assertEquals('1234', $token_read->get_last4());
 }