woocommerce_cleanup_rate_limits action-hookWC 1.0

Usage

add_action( 'woocommerce_cleanup_rate_limits', 'wp_kama_woocommerce_cleanup_rate_limits_action' );

/**
 * Function for `woocommerce_cleanup_rate_limits` action-hook.
 * 
 * @return void
 */
function wp_kama_woocommerce_cleanup_rate_limits_action(){

	// action...
}

Where the hook is called

WooCommerce::add_woocommerce_cleanup_rate_limits_wrapper()
woocommerce_cleanup_rate_limits
woocommerce/includes/class-woocommerce.php 1519
do_action( 'woocommerce_cleanup_rate_limits' );

Where the hook is used in WooCommerce

woocommerce/includes/class-wc-rate-limiter.php 43
add_action( 'woocommerce_cleanup_rate_limits', array( __CLASS__, 'cleanup' ) );