/home/sharedstore/public_html/prestashop.sharedstore.ma/classes/tax
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/classes/tax/TaxManagerInterface.php (1561B)
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
/**
* A TaxManager define a way to retrieve tax.
*/
interface TaxManagerInterface
{
/**
* This method determine if the tax manager is available for the specified address.
*
* @param Address $address
*
* @return bool
*/
public static function isAvailableForThisAddress(Address $address);
/**
* Return the tax calculator associated to this address.
*
* @return TaxCalculator
*/
public function getTaxCalculator();
}