mirror of
https://github.com/nextcloud/server.git
synced 2026-04-28 01:28:08 -04:00
fix: properly deprecate IOCMProvider
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
This commit is contained in:
parent
10852e01be
commit
967b634a82
2 changed files with 1 additions and 1 deletions
|
|
@ -1274,7 +1274,6 @@ class Server extends ServerContainer implements IServerContainer {
|
|||
$this->registerAlias(IPhoneNumberUtil::class, PhoneNumberUtil::class);
|
||||
|
||||
$this->registerAlias(ICapabilityAwareOCMProvider::class, OCMProvider::class);
|
||||
/** @deprecated 32.0.0 */
|
||||
$this->registerDeprecatedAlias(IOCMProvider::class, OCMProvider::class);
|
||||
|
||||
$this->registerAlias(ISetupCheckManager::class, SetupCheckManager::class);
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ use OCP\OCM\Exceptions\OCMProviderException;
|
|||
* Model based on the Open Cloud Mesh Discovery API
|
||||
* @link https://github.com/cs3org/OCM-API/
|
||||
* @since 28.0.0
|
||||
* @deprecated 32.0.0 Please use {@see \OCP\OCM\ICapabilityAwareOCMProvider}
|
||||
*/
|
||||
interface IOCMProvider extends JsonSerializable {
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue