Your IP : 216.73.217.100


Current Path : /var/www/www.indacotrentino.com/www/vendor/magento/module-customer/Api/
Upload File :
Current File : //var/www/www.indacotrentino.com/www/vendor/magento/module-customer/Api/SessionCleanerInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Customer\Api;

/**
 * Interface for cleaning customer session data.
 *
 * @api
 */
interface SessionCleanerInterface
{
    /**
     * Destroy all active customer sessions related to given customer id, including current session.
     *
     * @param int $customerId
     * @return void
     */
    public function clearFor(int $customerId): void;
}