* @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\Profile\CommandHandler; use PrestaShop\PrestaShop\Core\Domain\Profile\Command\AddProfileCommand; use PrestaShop\PrestaShop\Core\Domain\Profile\ValueObject\ProfileId; /** * Interface for service that handles adding new profile */ interface AddProfileHandlerInterface { /** * @param AddProfileCommand $command * * @return ProfileId */ public function handle(AddProfileCommand $command); }