get_expiry_year() 공개 메소드

Returns the card expiration year (YYYY).
부터: 2.6.0
public get_expiry_year ( string $context = 'view' ) : string
$context string
리턴 string Expiration year
예제 #1
0
파일: cc.php 프로젝트: tlovett1/woocommerce
 /**
  * Test get/set expiry year.
  * @since 2.6.0
  */
 public function test_wc_payment_token_cc_expiry_year()
 {
     $token = new WC_Payment_Token_CC();
     $token->set_expiry_year('2016');
     $this->assertEquals('2016', $token->get_expiry_year());
 }