Action_Scheduler\Migration

Config::set_source_store()publicWC 1.0

Set the configured source store.

Метод класса: Config{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$Config = new Config();
$Config->set_source_store( $store );
$store(ActionScheduler_Store) (обязательный)
Source store object.

Код Config::set_source_store() WC 8.7.0

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