ActionScheduler_QueueRunner::instance()public staticWC 1.0

Method of the class: ActionScheduler_QueueRunner{}

Hooks from the method

Return

ActionScheduler_QueueRunner.

Usage

$result = ActionScheduler_QueueRunner::instance();

ActionScheduler_QueueRunner::instance() code WC 8.7.0

public static function instance() {
	if ( empty(self::$runner) ) {
		$class = apply_filters('action_scheduler_queue_runner_class', 'ActionScheduler_QueueRunner');
		self::$runner = new $class();
	}
	return self::$runner;
}