* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Domain\Tax\CommandHandler; use PrestaShop\PrestaShop\Core\Domain\Tax\Command\AddTaxCommand; /** * Defines contract for AddTaxHandler */ interface AddTaxHandlerInterface { /** * @param AddTaxCommand $command */ public function handle(AddTaxCommand $command); }