ActionScheduler::factorypublic staticWC 1.0

Factory.

Method of the class: ActionScheduler{}

No Hooks.

Returns

null. Nothing (null).

Usage

$result = ActionScheduler::factory();

ActionScheduler::factory() code WC 9.9.4

public static function factory() {
	if ( ! isset( self::$factory ) ) {
		self::$factory = new ActionScheduler_ActionFactory();
	}
	return self::$factory;
}