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