* @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\Feature\CommandHandler; use PrestaShop\PrestaShop\Core\Domain\Feature\Command\AddFeatureValueCommand; use PrestaShop\PrestaShop\Core\Domain\Feature\ValueObject\FeatureValueId; /** * Describes add feature value command handler */ interface AddFeatureValueHandlerInterface { /** * @param AddFeatureValueCommand $command * * @return FeatureValueId id of the created feature */ public function handle(AddFeatureValueCommand $command): FeatureValueId; }