File "TaxDisplayMode.php"

Full Path: /home/jovision/public_html/wp/wp-content/plugins/woocommerce/src/Enums/TaxDisplayMode.php
File size: 531 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

declare( strict_types = 1 );

namespace Automattic\WooCommerce\Enums;

/**
 * Enum class for the possible values of the `woocommerce_tax_display_shop` and
 * `woocommerce_tax_display_cart` options, which control whether prices are
 * shown including or excluding tax.
 *
 * @since 11.0.0
 */
final class TaxDisplayMode {
	/**
	 * Prices displayed including tax.
	 *
	 * @var string
	 */
	public const INCLUSIVE = 'incl';

	/**
	 * Prices displayed excluding tax.
	 *
	 * @var string
	 */
	public const EXCLUSIVE = 'excl';
}