declare( strict_types = 1 );
namespace Automattic\WooCommerce\Enums;
* Enum class for all the internal order statuses.
* These statuses are used internally by WooCommerce to query database directly.
final class OrderInternalStatus {
* The order is pending payment.
public const PENDING = 'wc-pending';
* The order is processing.
public const PROCESSING = 'wc-processing';
public const ON_HOLD = 'wc-on-hold';
* The order is completed.
public const COMPLETED = 'wc-completed';
* The order is cancelled.
public const CANCELLED = 'wc-cancelled';
public const REFUNDED = 'wc-refunded';
public const FAILED = 'wc-failed';