Automattic\WooCommerce\Blocks\Integrations

IntegrationRegistry::get_all_registered()publicWC 1.0

Retrieves all registered integrations.

Method of the class: IntegrationRegistry{}

No Hooks.

Return

IntegrationInterface[].

Usage

$IntegrationRegistry = new IntegrationRegistry();
$IntegrationRegistry->get_all_registered();

IntegrationRegistry::get_all_registered() code WC 8.7.0

public function get_all_registered() {
	return $this->registered_integrations;
}