* @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\BulkDeleteProfileCommand; /** * Interface BulkDeleteProfileHandlerInterface defines profile bulk deletion handler. */ interface BulkDeleteProfileHandlerInterface { /** * Delete multiple profiles. * * @param BulkDeleteProfileCommand $command */ public function handle(BulkDeleteProfileCommand $command); }