Automattic\WooCommerce\Blocks\Registry

FactoryType::get()publicWC 1.0

Invokes and returns the value from the stored internal callback.

Method of the class: FactoryType{}

No Hooks.

Return

Mixed.

Usage

$FactoryType = new FactoryType();
$FactoryType->get( $container );
$container(Container) (required)
An instance of the dependency injection container.

FactoryType::get() code WC 8.7.0

public function get( Container $container ) {
	return $this->resolve_value( $container );
}