Automattic\WooCommerce\Checkout\Helpers

ReserveStock::is_enabled()protectedWC 1.0

Is stock reservation enabled?

Method of the class: ReserveStock{}

No Hooks.

Return

true|false.

Usage

// protected - for code of main (parent) or child class
$result = $this->is_enabled();

ReserveStock::is_enabled() code WC 8.7.0

protected function is_enabled() {
	return $this->enabled;
}