diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2016-08-11 14:48:21 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2016-08-11 14:48:21 +0200 |
commit | 14ddf9d923ba78a9b938d6eb6050d71aaef22ed6 (patch) | |
tree | a99f04e1a2569421c522e7a28c5e9c8381930cab /apps/encryption/lib | |
parent | f3b15a9ab97ce4498bafc731dc24350e98a7cb51 (diff) | |
download | nextcloud-server-14ddf9d923ba78a9b938d6eb6050d71aaef22ed6.tar.gz nextcloud-server-14ddf9d923ba78a9b938d6eb6050d71aaef22ed6.zip |
rename IAdmin to ISettings, the interface is not bound to a specific settings scope
Diffstat (limited to 'apps/encryption/lib')
-rw-r--r-- | apps/encryption/lib/Settings/Admin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/encryption/lib/Settings/Admin.php b/apps/encryption/lib/Settings/Admin.php index 71a365caee1..2faa118e2a2 100644 --- a/apps/encryption/lib/Settings/Admin.php +++ b/apps/encryption/lib/Settings/Admin.php @@ -33,10 +33,10 @@ use OCP\ILogger; use OCP\ISession; use OCP\IUserManager; use OCP\IUserSession; -use OCP\Settings\IAdmin; +use OCP\Settings\ISettings; use OCP\IConfig; -class Admin implements IAdmin { +class Admin implements ISettings { /** @var IL10N */ private $l; |