Action_Scheduler\Migration

Config::set_destination_store()publicWC 1.0

Set the configured destination store.

Method of the class: Config{}

No Hooks.

Return

null. Nothing (null).

Usage

$Config = new Config();
$Config->set_destination_store( $store );
$store(ActionScheduler_Store) (required)
-

Config::set_destination_store() code WC 8.6.1

public function set_destination_store( Store $store ) {
	$this->destination_store = $store;
}