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