| Current Path : /home/rtorresani/www/vendor/magento/module-adobe-ims-api/Api/ |
| Current File : //home/rtorresani/www/vendor/magento/module-adobe-ims-api/Api/FlushUserTokensInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\AdobeImsApi\Api;
/**
* Declare functionality for remove user access and refresh tokens functionality
* @api
*/
interface FlushUserTokensInterface
{
/**
* Remove access and refresh tokens for the specified user or current user
*
* @param int $adminUserId
*/
public function execute(int $adminUserId = null): void;
}