diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-04-28 11:47:04 +0200 |
---|---|---|
committer | Côme Chilliet (Rebase PR Action) <come-nc@users.noreply.github.com> | 2022-05-30 07:36:13 +0000 |
commit | 09917b85838d6cf8f075eadfac65a674be2c4316 (patch) | |
tree | 9bf1a7c7ca34b59ca1f9e7ac6b2f5bdad83be623 /lib/public | |
parent | f20b7e576484d9d7654763e60707115d93655df9 (diff) | |
download | nextcloud-server-09917b85838d6cf8f075eadfac65a674be2c4316.tar.gz nextcloud-server-09917b85838d6cf8f075eadfac65a674be2c4316.zip |
Implement getExportEstimatedSize in migrators
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/UserMigration/IMigrator.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/UserMigration/IMigrator.php b/lib/public/UserMigration/IMigrator.php index b7ad382bef2..6915e9b18a7 100644 --- a/lib/public/UserMigration/IMigrator.php +++ b/lib/public/UserMigration/IMigrator.php @@ -93,7 +93,7 @@ interface IMigrator { * * @since 24.0.0 */ - public function getExportEstimatedSize(): int; + public function getExportEstimatedSize(IUser $user): int; /** * Checks whether it is able to import a version of the export format for this migrator |