ActionScheduler::factory
Factory.
Method of the class: ActionScheduler{}
No Hooks.
Returns
null. Nothing (null).
Usage
$result = ActionScheduler::factory();
ActionScheduler::factory() ActionScheduler::factory code WC 10.7.0
public static function factory() {
if ( ! isset( self::$factory ) ) {
self::$factory = new ActionScheduler_ActionFactory();
}
return self::$factory;
}