* @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\Meta\CommandHandler; use PrestaShop\PrestaShop\Core\Domain\Meta\Command\AddMetaCommand; use PrestaShop\PrestaShop\Core\Domain\Meta\ValueObject\MetaId; /** * Interface AddMetaHandlerInterface defines contract for AddMetaHandler. */ interface AddMetaHandlerInterface { /** * Used to handle the logic required for adding meta data. * * @param AddMetaCommand $command * * @return MetaId */ public function handle(AddMetaCommand $command); }