HEX
Server: nginx/1.24.0
System: Linux DGT-WORDPRESS-VM-SERVER 6.14.0-1014-azure #14~24.04.1-Ubuntu SMP Fri Oct 3 20:52:11 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 8.4.12
Disabled: NONE
Upload Files
File: /mnt/data/doccure-wp-market/wp-content/plugins/woocommerce/src/Enums/FeaturePluginCompatibility.php
<?php
declare( strict_types = 1 );

namespace Automattic\WooCommerce\Enums;

/**
 * Enum class for feature plugin compatibility.
 */
final class FeaturePluginCompatibility {

	/**
	 * Plugins are compatible by default with the feature.
	 *
	 * @var string
	 */
	public const COMPATIBLE = 'compatible';

	/**
	 * Plugins are incompatible by default with the feature.
	 *
	 * @var string
	 */
	public const INCOMPATIBLE = 'incompatible';

	/**
	 * Plugin compatibility with the feautre is yet to be determined. Internal use only.
	 *
	 * @internal
	 * @var string
	 */
	public const UNCERTAIN = 'uncertain';

	/**
	 * Valid values for registration of feature compatibility.
	 *
	 * @var string[]
	 */
	public const VALID_REGISTRATION_VALUES = array(
		self::COMPATIBLE,
		self::INCOMPATIBLE,
	);
}