2019-01-21 14:45:27 -05:00
|
|
|
<?php
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2019-01-21 14:45:27 -05:00
|
|
|
declare(strict_types=1);
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2019-01-21 14:45:27 -05:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2019-01-21 14:45:27 -05:00
|
|
|
*/
|
2026-05-28 08:54:31 -04:00
|
|
|
|
2019-01-21 14:45:27 -05:00
|
|
|
namespace OC\Authentication\Token;
|
|
|
|
|
|
|
|
|
|
interface INamedToken extends IToken {
|
|
|
|
|
/**
|
|
|
|
|
* Set token name
|
|
|
|
|
*
|
|
|
|
|
* @param string $name
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function setName(string $name): void;
|
2019-11-22 14:52:10 -05:00
|
|
|
}
|