2019-05-23 10:58:58 -04:00
|
|
|
<?php
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2019-05-23 10:58:58 -04:00
|
|
|
declare(strict_types=1);
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2019-05-23 10:58:58 -04: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-05-23 10:58:58 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCP\Group\Backend;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @since 17.0.0
|
|
|
|
|
*/
|
|
|
|
|
interface IGetDisplayNameBackend {
|
|
|
|
|
/**
|
2019-09-20 05:04:36 -04:00
|
|
|
* @param string $gid
|
|
|
|
|
* @return string
|
2019-05-23 10:58:58 -04:00
|
|
|
* @since 17.0.0
|
|
|
|
|
*/
|
|
|
|
|
public function getDisplayName(string $gid): string;
|
|
|
|
|
}
|