at path:
ROOT
/
wp-content
/
plugins
/
woocommerce
/
src
/
Enums
/
ProductTaxStatus.php
run:
R
W
Run
CatalogVisibility.php
616 By
2026-04-15 05:42:46
R
W
Run
Delete
Rename
FeaturePluginCompatibility.php
796 By
2026-04-15 05:42:46
R
W
Run
Delete
Rename
OrderInternalStatus.php
947 By
2026-04-15 05:42:46
R
W
Run
Delete
Rename
OrderStatus.php
2.19 KB
2026-04-15 05:42:46
R
W
Run
Delete
Rename
PaymentGatewayFeature.php
3.03 KB
2026-04-15 05:42:46
R
W
Run
Delete
Rename
ProductStatus.php
881 By
2026-04-15 05:42:46
R
W
Run
Delete
Rename
ProductStockStatus.php
583 By
2026-04-15 05:42:46
R
W
Run
Delete
Rename
ProductTaxStatus.php
533 By
2026-04-15 05:42:46
R
W
Run
Delete
Rename
ProductType.php
633 By
2026-04-15 05:42:46
R
W
Run
Delete
Rename
error_log
up
📄
ProductTaxStatus.php
Save
<?php declare( strict_types = 1 ); namespace Automattic\WooCommerce\Enums; /** * Enum class for all the product tax statuses. */ class ProductTaxStatus { /** * Tax status for products that are taxable. * * @var string */ public const TAXABLE = 'taxable'; /** * Indicates that only the shipping cost should be taxed, not the product itself. * * @var string */ public const SHIPPING = 'shipping'; /** * Tax status for products that are not taxable. * * @var string */ public const NONE = 'none'; }