* @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\SpecificPrice\CommandHandler; use PrestaShop\PrestaShop\Core\Domain\SpecificPrice\Command\DeleteSpecificPriceByCartProductCommand; @trigger_error( sprintf( '%s is deprecated since version 8.0.0 and will be removed in the next major version.', DeleteSpecificPriceByCartProductHandlerInterface::class ), E_USER_DEPRECATED ); /** * @deprecated since 8.0.0 and will be removed in the next major version. */ interface DeleteSpecificPriceByCartProductHandlerInterface { /** * @param DeleteSpecificPriceByCartProductCommand $command */ public function handle(DeleteSpecificPriceByCartProductCommand $command): void; }