WC_Legacy_Payment_Token::update()publicWC 1.0

Deprecated from version 3.0.0. It is no longer supported and can be removed in future releases. Use ::save instead.

Update a token.

Method of the class: WC_Legacy_Payment_Token{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Legacy_Payment_Token = new WC_Legacy_Payment_Token();
$WC_Legacy_Payment_Token->update();

Changelog

Deprecated since 3.0.0 - Use ::save instead.

WC_Legacy_Payment_Token::update() code WC 8.7.0

public function update() {
	wc_deprecated_function( 'WC_Payment_Token::update', '3.0.0', 'WC_Payment_Token::save instead.' );
	$data_store = WC_Data_Store::load( 'payment-token' );
	try {
		$data_store->update( $this );
	} catch ( Exception $e ) {
		return false;
	}
}