2016-04-25 08:10:55 -04:00
|
|
|
<?php
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2018-05-15 04:24:46 -04:00
|
|
|
declare(strict_types=1);
|
2016-04-25 08:10:55 -04:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2016-04-25 08:10:55 -04:00
|
|
|
*/
|
|
|
|
|
namespace OC\Authentication\Token;
|
|
|
|
|
|
2023-10-20 11:51:33 -04:00
|
|
|
use OCP\Authentication\Token\IToken as OCPIToken;
|
2016-05-19 05:20:22 -04:00
|
|
|
|
2023-10-23 09:20:04 -04:00
|
|
|
/**
|
|
|
|
|
* @deprecated 28.0.0 use {@see \OCP\Authentication\Token\IToken} instead
|
|
|
|
|
*/
|
2023-10-20 11:51:33 -04:00
|
|
|
interface IToken extends OCPIToken {
|
2016-04-25 08:10:55 -04:00
|
|
|
}
|