Action_Scheduler\Migration

Config::set_source_store()publicWC 1.0

Set the configured source store.

Method of the class: Config{}

No Hooks.

Return

null. Nothing (null).

Usage

$Config = new Config();
$Config->set_source_store( $store );
$store(ActionScheduler_Store) (required)
Source store object.

Config::set_source_store() code WC 8.6.1

public function set_source_store( Store $store ) {
	$this->source_store = $store;
}