diff options
author | Faraz Samapoor <f.samapoor@gmail.com> | 2023-06-13 10:45:35 +0330 |
---|---|---|
committer | Louis <6653109+artonge@users.noreply.github.com> | 2023-06-19 12:55:15 +0200 |
commit | 73d7c45ae10b878ca3449b112eca93c244f3a83d (patch) | |
tree | 1b1e2c9f8d75f3289b6968bbb56d904daeca244b /core/Command | |
parent | d34cafc58c699f258b3ec80ff10e3b6e8080cbdd (diff) | |
download | nextcloud-server-73d7c45ae10b878ca3449b112eca93c244f3a83d.tar.gz nextcloud-server-73d7c45ae10b878ca3449b112eca93c244f3a83d.zip |
Update core/Command/Db/ConvertFilecacheBigInt.php
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
Diffstat (limited to 'core/Command')
-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(); } |