Automattic\WooCommerce\EmailEditor\Engine
Dependency_Check::are_dependencies_met
Checks if all dependencies are met.
Method of the class: Dependency_Check{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Dependency_Check = new Dependency_Check(); $Dependency_Check->are_dependencies_met(): bool;
Dependency_Check::are_dependencies_met() Dependency Check::are dependencies met code WC 10.8.1
public function are_dependencies_met(): bool {
if ( ! $this->is_wp_version_compatible() ) {
return false;
}
return true;
}