ActionScheduler_DataController::dependencies_met
Get a flag indicating whether the migration environment dependencies are met.
Method of the class: ActionScheduler_DataController{}
Hooks from the method
Returns
true|false.
Usage
$result = ActionScheduler_DataController::dependencies_met();
ActionScheduler_DataController::dependencies_met() ActionScheduler DataController::dependencies met code WC 10.7.0
public static function dependencies_met() {
$php_support = version_compare( PHP_VERSION, self::MIN_PHP_VERSION, '>=' );
return $php_support && apply_filters( 'action_scheduler_migration_dependencies_met', true );
}