mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(settings): Deprecate old things for real
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
3ce622ffdb
commit
f14949218c
1 changed files with 4 additions and 4 deletions
|
|
@ -35,25 +35,25 @@ use OCP\IUser;
|
|||
interface IManager {
|
||||
/**
|
||||
* @since 9.1.0
|
||||
* @depreacted 29.0.0 Use {@see self::SETTINGS_ADMIN} instead
|
||||
* @deprecated 29.0.0 Use {@see self::SETTINGS_ADMIN} instead
|
||||
*/
|
||||
public const KEY_ADMIN_SETTINGS = 'admin';
|
||||
|
||||
/**
|
||||
* @since 9.1.0
|
||||
* @depreacted 29.0.0 Use {@see self::SETTINGS_ADMIN} instead
|
||||
* @deprecated 29.0.0 Use {@see self::SETTINGS_ADMIN} instead
|
||||
*/
|
||||
public const KEY_ADMIN_SECTION = 'admin-section';
|
||||
|
||||
/**
|
||||
* @since 13.0.0
|
||||
* @depreacted 29.0.0 Use {@see self::SETTINGS_PERSONAL} instead
|
||||
* @deprecated 29.0.0 Use {@see self::SETTINGS_PERSONAL} instead
|
||||
*/
|
||||
public const KEY_PERSONAL_SETTINGS = 'personal';
|
||||
|
||||
/**
|
||||
* @since 13.0.0
|
||||
* @depreacted 29.0.0 Use {@see self::SETTINGS_PERSONAL} instead
|
||||
* @deprecated 29.0.0 Use {@see self::SETTINGS_PERSONAL} instead
|
||||
*/
|
||||
public const KEY_PERSONAL_SECTION = 'personal-section';
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue