IToken.php 416 B

1234567891011121314151617
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  6. * SPDX-License-Identifier: AGPL-3.0-only
  7. */
  8. namespace OC\Authentication\Token;
  9. use OCP\Authentication\Token\IToken as OCPIToken;
  10. /**
  11. * @deprecated 28.0.0 use {@see \OCP\Authentication\Token\IToken} instead
  12. */
  13. interface IToken extends OCPIToken {
  14. }