mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
chore: adjust conflicting php class name usage
Co-authored-by: Benjamin Gaussorgues <github-fa3ie@altahrim.net> Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
This commit is contained in:
parent
6cc147c20c
commit
deaaa4beb6
1 changed files with 2 additions and 2 deletions
|
|
@ -28,7 +28,7 @@ use OC\Files\Filesystem;
|
|||
use OC\Files\Storage\Wrapper\Encryption;
|
||||
use OC\Files\View;
|
||||
use OC\Memcache\ArrayCache;
|
||||
use OCP\Encryption\Keys\IStorage;
|
||||
use OCP\Encryption\Keys\IStorage as EncryptionKeysStorage;
|
||||
use OCP\Files\Mount\IMountPoint;
|
||||
use OCP\Files\Storage\IDisableEncryptionStorage;
|
||||
use OCP\Files\Storage\IStorage;
|
||||
|
|
@ -83,7 +83,7 @@ class EncryptionWrapper {
|
|||
$mountManager = Filesystem::getMountManager();
|
||||
$uid = $user ? $user->getUID() : null;
|
||||
$fileHelper = \OC::$server->getEncryptionFilesHelper();
|
||||
$keyStorage = \OC::$server->get(IStorage::class);
|
||||
$keyStorage = \OC::$server->get(EncryptionKeysStorage::class);
|
||||
|
||||
$util = new Util(
|
||||
new View(),
|
||||
|
|
|
|||
Loading…
Reference in a new issue