diff options
-rw-r--r-- | core/Command/Db/ConvertFilecacheBigInt.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/Command/Db/ConvertFilecacheBigInt.php b/core/Command/Db/ConvertFilecacheBigInt.php index afa53326124..e10382c6fbb 100644 --- a/core/Command/Db/ConvertFilecacheBigInt.php +++ b/core/Command/Db/ConvertFilecacheBigInt.php @@ -42,7 +42,9 @@ use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Question\ConfirmationQuestion; class ConvertFilecacheBigInt extends Command { - public function __construct(private Connection $connection) { + public function __construct( + private Connection $connection, + ) { parent::__construct(); } |