Action_Scheduler\Migration
Config::get_source_store
Get the configured source store.
Method of the class: Config{}
No Hooks.
Returns
ActionScheduler_Store.
Usage
$Config = new Config(); $Config->get_source_store();
Config::get_source_store() Config::get source store code WC 10.4.3
public function get_source_store() {
if ( empty( $this->source_store ) ) {
throw new \RuntimeException( __( 'Source store must be configured before running a migration', 'woocommerce' ) );
}
return $this->source_store;
}