WC_Helper::get_cached_connection_datapublic staticWC 1.0

Get cached connection data

Method of the class: WC_Helper{}

No Hooks.

Returns

Array|true|false. cached connection data or false connection data is not cached.

Usage

$result = WC_Helper::get_cached_connection_data();

WC_Helper::get_cached_connection_data() code WC 10.3.3

public static function get_cached_connection_data() {
	return get_transient( self::CACHE_KEY_CONNECTION_DATA );
}