2022-11-29 14:52:02 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2022-05-17 14:39:49 +02:00
|
|
|
/**
|
2024-06-02 15:26:54 +02:00
|
|
|
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2022-05-17 14:39:49 +02:00
|
|
|
*/
|
2022-11-29 14:52:02 +01:00
|
|
|
namespace OCA\Files_Versions\Versions;
|
|
|
|
|
|
|
|
/**
|
2024-03-11 08:11:53 -05:00
|
|
|
* @deprecated 29.0.0
|
2022-11-29 14:52:02 +01:00
|
|
|
* @since 26.0.0
|
|
|
|
*/
|
|
|
|
interface INameableVersion {
|
|
|
|
/**
|
|
|
|
* Get the user created label
|
2024-03-11 08:11:53 -05:00
|
|
|
* @deprecated 29.0.0
|
2022-11-29 14:52:02 +01:00
|
|
|
* @return string
|
|
|
|
* @since 26.0.0
|
|
|
|
*/
|
|
|
|
public function getLabel(): string;
|
|
|
|
}
|