* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Adapter\Tax\Ecotax; use PrestaShop\PrestaShop\Core\Tax\Ecotax\ProductEcotaxResetterInterface; use Product; /** * Resets ecotax for products using legacy object model */ final class ProductEcotaxResetter implements ProductEcotaxResetterInterface { /** * {@inheritdoc} */ public function reset() { Product::resetEcoTax(); } }