/home/sharedstore/public_html/prestashop.sharedstore.ma/classes/tax
NameSizeModeActions
AverageTaxOfProductsTaxCalculator.php34260644editdlrm
index.php13750644editdlrm
Tax.php68200644editdlrm
TaxCalculator.php47830644editdlrm
TaxConfiguration.php16330644editdlrm
TaxManagerFactory.php34870644editdlrm
TaxManagerInterface.php15610644editdlrm
TaxManagerModule.php20810644editdlrm
TaxRule.php59540644editdlrm
TaxRulesGroup.php91180644editdlrm
TaxRulesTaxManager.php46850644editdlrm
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(); }