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 /tests | |
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 'tests')
-rw-r--r-- | tests/lib/UserPreferencesTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lib/UserPreferencesTest.php b/tests/lib/UserPreferencesTest.php index 19e6d6161bf..c149af002d3 100644 --- a/tests/lib/UserPreferencesTest.php +++ b/tests/lib/UserPreferencesTest.php @@ -7,11 +7,11 @@ declare(strict_types=1); */ namespace lib; +use NCU\Config\Exceptions\TypeConflictException; +use NCU\Config\Exceptions\UnknownKeyException; +use NCU\Config\IUserPreferences; +use NCU\Config\ValueType; use OC\Config\UserPreferences; -use OCP\Config\Exceptions\TypeConflictException; -use OCP\Config\Exceptions\UnknownKeyException; -use OCP\Config\IUserPreferences; -use OCP\Config\ValueType; use OCP\IDBConnection; use OCP\Security\ICrypto; use Psr\Log\LoggerInterface; |