summaryrefslogtreecommitdiffstats
path: root/apps/files_external
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2016-05-17 16:02:40 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2016-05-24 08:41:22 +0200
commit64538740ec3bc24501145140314cf110cf77b364 (patch)
tree9dfb16fac8c39d88c4ece35a48529aa38e327880 /apps/files_external
parentf14dff680d5e1e0fe10065ed25c524d9b5078cae (diff)
downloadnextcloud-server-64538740ec3bc24501145140314cf110cf77b364.tar.gz
nextcloud-server-64538740ec3bc24501145140314cf110cf77b364.zip
Fix missing imports
Diffstat (limited to 'apps/files_external')
-rw-r--r--apps/files_external/lib/Migration/StorageMigrator.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/files_external/lib/Migration/StorageMigrator.php b/apps/files_external/lib/Migration/StorageMigrator.php
index a8b0461e7de..3cd7be3f953 100644
--- a/apps/files_external/lib/Migration/StorageMigrator.php
+++ b/apps/files_external/lib/Migration/StorageMigrator.php
@@ -24,9 +24,12 @@ namespace OCA\Files_External\Migration;
use OCA\Files_External\Service\BackendService;
use OCA\Files_External\Service\DBConfigService;
+use OCA\Files_External\Service\GlobalLegacyStoragesService;
use OCA\Files_External\Service\GlobalStoragesService;
use OCA\Files_External\Service\LegacyStoragesService;
use OCA\Files_External\Service\StoragesService;
+use OCA\Files_External\Service\UserLegacyStoragesService;
+use OCA\Files_External\Service\UserStoragesService;
use OCP\Files\Config\IUserMountCache;
use OCP\IConfig;
use OCP\IDBConnection;