* @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\EditProfileCommand; /** * Interface for service that edits existing Profile */ interface EditProfileHandlerInterface { /** * @param EditProfileCommand $command */ public function handle(EditProfileCommand $command); }