Action_Scheduler\Migration

Config::get_dry_run()publicWC 1.0

Get flag indicating whether it's a dry run.

Method of the class: Config{}

No Hooks.

Return

true|false.

Usage

$Config = new Config();
$Config->get_dry_run();

Config::get_dry_run() code WC 8.6.1

public function get_dry_run() {
	return $this->dry_run;
}