Action_Scheduler\Migration
Config::get_source_store()
Get the configured source store.
Method of the class: Config{}
No Hooks.
Return
ActionScheduler_Store
.
Usage
$Config = new Config(); $Config->get_source_store();
Config::get_source_store() Config::get source store code WC 9.7.1
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; }