Automattic\WooCommerce\Internal\DependencyManagement

Definition::forgetResolved()publicWC 1.0

Forget the cached resolved object, so the next time it's requested it will be resolved again.

Method of the class: Definition{}

No Hooks.

Return

null. Nothing (null).

Usage

$Definition = new Definition();
$Definition->forgetResolved();

Definition::forgetResolved() code WC 9.6.0

public function forgetResolved() {
	$this->resolved = null;
}