Warning: This method has been deprecated. – Use ::save instead.
WC_Legacy_Payment_Token::create()
Create a token.
Description Description
Source Source
File: includes/legacy/abstract-wc-legacy-payment-token.php
public function create() { wc_deprecated_function( 'WC_Payment_Token::create', '3.0.0', 'WC_Payment_Token::save instead.' ); $data_store = WC_Data_Store::load( 'payment-token' ); try { $data_store->create( $this ); } catch ( Exception $e ) { return false; } }
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |