mirror of
https://github.com/nextcloud/server.git
synced 2025-01-31 06:43:12 +00:00
dae7c159f7
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
19 lines
358 B
PHP
19 lines
358 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OC\Authentication\Token;
|
|
|
|
interface INamedToken extends IToken {
|
|
/**
|
|
* Set token name
|
|
*
|
|
* @param string $name
|
|
* @return void
|
|
*/
|
|
public function setName(string $name): void;
|
|
}
|