Action_Scheduler\Migration

Config::get_destination_store()publicWC 1.0

Get the configured destination store.

Method of the class: Config{}

No Hooks.

Return

ActionScheduler_Store.

Usage

$Config = new Config();
$Config->get_destination_store();

Config::get_destination_store() code WC 8.7.0

public function get_destination_store() {
	if ( empty( $this->destination_store ) ) {
		throw new \RuntimeException( __( 'Destination store must be configured before running a migration', 'woocommerce' ) );
	}

	return $this->destination_store;
}