1
0

IWipeableToken.php 317 B

12345678910111213141516
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OC\Authentication\Token;
  8. interface IWipeableToken extends IToken {
  9. /**
  10. * Mark the token for remote wipe
  11. */
  12. public function wipe(): void;
  13. }