* @copyright 2007-2014 PrestaShop SA * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ /** * 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 * @param string $type * * @return TaxManager */ public static function isAvailableForThisAddress(Address $address); /** * Return the tax calculator associated to this address * * @return TaxCalculator */ public function getTaxCalculator(); }