Automattic\WooCommerce\Internal\StockNotifications

DataRetentionController::clear_daily_taskpublicWC 1.0

Unschedule the daily task when the plugin is deactivated, or the option is set to zero.

Method of the class: DataRetentionController{}

No Hooks.

Returns

null. Nothing (null).

Usage

$DataRetentionController = new DataRetentionController();
$DataRetentionController->clear_daily_task();

DataRetentionController::clear_daily_task() code WC 10.3.6

public function clear_daily_task() {
	wp_clear_scheduled_hook( self::DAILY_TASK_HOOK );
}