From 82fb8f850828d24f551ad5ef3b8523486e5104df Mon Sep 17 00:00:00 2001 From: provokateurin Date: Wed, 14 May 2025 15:51:42 +0200 Subject: refactor: Extend rector to core/ Signed-off-by: provokateurin --- apps/files/lib/Command/Copy.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'apps/files/lib/Command/Copy.php') 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(); } -- cgit v1.2.3