aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/lib/Command/Copy.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/lib/Command/Copy.php')
-rw-r--r--apps/files/lib/Command/Copy.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/files/lib/Command/Copy.php b/apps/files/lib/Command/Copy.php
index e51a1689907..ad0dfa90de1 100644
--- a/apps/files/lib/Command/Copy.php
+++ b/apps/files/lib/Command/Copy.php
@@ -19,10 +19,9 @@ use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Question\ConfirmationQuestion;
class Copy extends Command {
- private FileUtils $fileUtils;
-
- public function __construct(FileUtils $fileUtils) {
- $this->fileUtils = $fileUtils;
+ public function __construct(
+ private FileUtils $fileUtils,
+ ) {
parent::__construct();
}