2016-04-25 12:10:55 +00:00
|
|
|
<?php
|
2019-12-03 18:57:53 +00:00
|
|
|
|
2018-05-15 08:24:46 +00:00
|
|
|
declare(strict_types=1);
|
2016-04-25 12:10:55 +00:00
|
|
|
/**
|
2024-05-23 07:26:56 +00: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 12:10:55 +00:00
|
|
|
*/
|
|
|
|
namespace OC\Authentication\Token;
|
|
|
|
|
2023-10-20 15:51:33 +00:00
|
|
|
use OCP\Authentication\Token\IToken as OCPIToken;
|
2016-05-19 09:20:22 +00:00
|
|
|
|
2023-10-23 13:20:04 +00:00
|
|
|
/**
|
|
|
|
* @deprecated 28.0.0 use {@see \OCP\Authentication\Token\IToken} instead
|
|
|
|
*/
|
2023-10-20 15:51:33 +00:00
|
|
|
interface IToken extends OCPIToken {
|
2016-04-25 12:10:55 +00:00
|
|
|
}
|