ActionScheduler_Store::instance
Get instance.
Method of the class: ActionScheduler_Store{}
Hooks from the method
Returns
ActionScheduler_Store.
Usage
$result = ActionScheduler_Store::instance();
ActionScheduler_Store::instance() ActionScheduler Store::instance code WC 10.6.2
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;
}