summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-05-24 10:01:14 +0200
committerCôme Chilliet (Rebase PR Action) <come-nc@users.noreply.github.com>2022-05-30 07:36:13 +0000
commit6da413f7af5e53ce6d02a0e86a07e81593f68644 (patch)
tree34d6694458563ffdcdc608c10bc8dde2ced99c31 /apps/files_trashbin
parent09917b85838d6cf8f075eadfac65a674be2c4316 (diff)
downloadnextcloud-server-6da413f7af5e53ce6d02a0e86a07e81593f68644.tar.gz
nextcloud-server-6da413f7af5e53ce6d02a0e86a07e81593f68644.zip
Move new IMigrator method to a specific interface ISizeEstimationMigrator
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r--apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php b/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php
index 721ca59f929..658f5015b0e 100644
--- a/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php
+++ b/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php
@@ -36,11 +36,12 @@ use OCP\IUser;
use OCP\UserMigration\IExportDestination;
use OCP\UserMigration\IImportSource;
use OCP\UserMigration\IMigrator;
+use OCP\UserMigration\ISizeEstimationMigrator;
use OCP\UserMigration\TMigratorBasicVersionHandling;
use OCP\UserMigration\UserMigrationException;
use Symfony\Component\Console\Output\OutputInterface;
-class TrashbinMigrator implements IMigrator {
+class TrashbinMigrator implements IMigrator, ISizeEstimationMigrator {
use TMigratorBasicVersionHandling;