diff options
author | Maxence Lange <maxence@artificial-owl.com> | 2024-11-12 21:29:18 -0100 |
---|---|---|
committer | Maxence Lange <maxence@artificial-owl.com> | 2024-11-18 20:11:31 -0100 |
commit | 6afc8552b7c0dcd96c88533f47bc8b55cba327c9 (patch) | |
tree | 44bb0b891743ecbd8f5827233d7f6b0a0e18ae9c /lib/private | |
parent | 7c04818c5c078fb1dc7c5b79f295fc40a60a6296 (diff) | |
download | nextcloud-server-6afc8552b7c0dcd96c88533f47bc8b55cba327c9.tar.gz nextcloud-server-6afc8552b7c0dcd96c88533f47bc8b55cba327c9.zip |
feat(user-prefs): switching to NCU/
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/AllConfig.php | 6 | ||||
-rw-r--r-- | lib/private/Config/UserPreferences.php | 10 | ||||
-rw-r--r-- | lib/private/Server.php | 2 |
3 files changed, 9 insertions, 9 deletions
diff --git a/lib/private/AllConfig.php b/lib/private/AllConfig.php index 8f7e5359c96..dbea65fdc21 100644 --- a/lib/private/AllConfig.php +++ b/lib/private/AllConfig.php @@ -6,11 +6,11 @@ */ namespace OC; +use NCU\Config\Exceptions\TypeConflictException; +use NCU\Config\IUserPreferences; +use NCU\Config\ValueType; use OC\Config\UserPreferences; use OCP\Cache\CappedMemoryCache; -use OCP\Config\Exceptions\TypeConflictException; -use OCP\Config\IUserPreferences; -use OCP\Config\ValueType; use OCP\IConfig; use OCP\IDBConnection; use OCP\PreConditionNotMetException; diff --git a/lib/private/Config/UserPreferences.php b/lib/private/Config/UserPreferences.php index 6dd9c633836..d9fd5f6a064 100644 --- a/lib/private/Config/UserPreferences.php +++ b/lib/private/Config/UserPreferences.php @@ -11,11 +11,11 @@ namespace OC\Config; use Generator; use InvalidArgumentException; use JsonException; -use OCP\Config\Exceptions\IncorrectTypeException; -use OCP\Config\Exceptions\TypeConflictException; -use OCP\Config\Exceptions\UnknownKeyException; -use OCP\Config\IUserPreferences; -use OCP\Config\ValueType; +use NCU\Config\Exceptions\IncorrectTypeException; +use NCU\Config\Exceptions\TypeConflictException; +use NCU\Config\Exceptions\UnknownKeyException; +use NCU\Config\IUserPreferences; +use NCU\Config\ValueType; use OCP\DB\Exception as DBException; use OCP\DB\IResult; use OCP\DB\QueryBuilder\IQueryBuilder; diff --git a/lib/private/Server.php b/lib/private/Server.php index e109636f1fa..dc4b3c4f7dc 100644 --- a/lib/private/Server.php +++ b/lib/private/Server.php @@ -7,6 +7,7 @@ namespace OC; use bantu\IniGetWrapper\IniGetWrapper; +use NCU\Config\IUserPreferences; use OC\Accounts\AccountManager; use OC\App\AppManager; use OC\App\AppStore\Bundles\BundleFetcher; @@ -138,7 +139,6 @@ use OCP\Collaboration\AutoComplete\IManager; use OCP\Collaboration\Reference\IReferenceManager; use OCP\Command\IBus; use OCP\Comments\ICommentsManager; -use OCP\Config\IUserPreferences; use OCP\Contacts\ContactsMenu\IActionFactory; use OCP\Contacts\ContactsMenu\IContactsStore; use OCP\Defaults; |