Action_Scheduler\Migration
Config::get_destination_store
Get the configured destination store.
Метод класса: Config{}
Хуков нет.
Возвращает
ActionScheduler_Store.
Использование
$Config = new Config(); $Config->get_destination_store();
Код Config::get_destination_store() Config::get destination store WC 10.7.0
public function get_destination_store() {
if ( empty( $this->destination_store ) ) {
throw new \RuntimeException( __( 'Destination store must be configured before running a migration', 'woocommerce' ) );
}
return $this->destination_store;
}