ActionScheduler_Store::instance()public staticWC 1.0

Method of the class: ActionScheduler_Store{}

Hooks from the method

Return

ActionScheduler_Store.

Usage

$result = ActionScheduler_Store::instance();

ActionScheduler_Store::instance() code WC 8.7.0

public static function instance() {
	if ( empty( self::$store ) ) {
		$class = apply_filters( 'action_scheduler_store_class', self::DEFAULT_CLASS );
		self::$store = new $class();
	}
	return self::$store;
}