HEX
Server: LiteSpeed
System: Linux node612.namehero.net 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: dfwparty (1186)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: //home/dfwparty/santabootshop.com/wp-content/plugins/woocommerce/src/Api/Attributes/Deprecated.php
<?php

declare(strict_types=1);

namespace Automattic\WooCommerce\Api\Attributes;

use Attribute;

/**
 * Marks a field or enum value as deprecated in the GraphQL schema.
 *
 * Deprecated elements remain functional but are flagged with a deprecation
 * reason in introspection, signaling to API consumers that they should
 * migrate to an alternative.
 */
#[Attribute]
final class Deprecated {
	/**
	 * Constructor.
	 *
	 * @param string $reason A human-readable explanation of why the element is
	 *                       deprecated and what to use instead.
	 */
	public function __construct(
		public readonly string $reason,
	) {
	}
}