1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?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'; }
|