Automattic\WooCommerce\Internal\Admin\Settings

SettingsUIRequestContext::has_schema_failedpublicWC 1.0

Whether schema generation failed.

Method of the class: SettingsUIRequestContext{}

No Hooks.

Returns

true|false.

Usage

$SettingsUIRequestContext = new SettingsUIRequestContext();
$SettingsUIRequestContext->has_schema_failed(): bool;

SettingsUIRequestContext::has_schema_failed() code WC 10.9.1

public function has_schema_failed(): bool {
	if ( ! $this->schema_resolved ) {
		$this->resolve_schema();
	}

	return $this->schema_failed;
}