diff options
Diffstat (limited to 'apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php')
-rw-r--r-- | apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php b/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php index b58efbb38a6..baff1ef6032 100644 --- a/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php +++ b/apps/files_trashbin/lib/UserMigration/TrashbinMigrator.php @@ -32,20 +32,11 @@ class TrashbinMigrator implements IMigrator, ISizeEstimationMigrator { protected const PATH_FILES_FOLDER = Application::APP_ID . '/files'; protected const PATH_LOCATIONS_FILE = Application::APP_ID . '/locations.json'; - protected IRootFolder $root; - - protected IDBConnection $dbc; - - protected IL10N $l10n; - public function __construct( - IRootFolder $rootFolder, - IDBConnection $dbc, - IL10N $l10n, + protected IRootFolder $root, + protected IDBConnection $dbc, + protected IL10N $l10n, ) { - $this->root = $rootFolder; - $this->dbc = $dbc; - $this->l10n = $l10n; } /** |