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);
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2016-04-25 08:10:55 -04:00
|
|
|
/**
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2019-12-03 13:57:53 -05:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 09:56:42 -05:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2019-12-03 13:57:53 -05:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-04-25 08:10:55 -04:00
|
|
|
*
|
|
|
|
|
* @license AGPL-3.0
|
|
|
|
|
*
|
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
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
|
|
|
}
|