diff options
author | Faraz Samapoor <f.samapoor@gmail.com> | 2023-06-13 10:44:12 +0330 |
---|---|---|
committer | Louis <6653109+artonge@users.noreply.github.com> | 2023-06-19 12:55:15 +0200 |
commit | d34cafc58c699f258b3ec80ff10e3b6e8080cbdd (patch) | |
tree | a6554a1a716776dfa17824e494d86e0526e7c886 /core/Command/Db | |
parent | f1a19a10fceb7de383a437da987e90618fdacc4a (diff) | |
download | nextcloud-server-d34cafc58c699f258b3ec80ff10e3b6e8080cbdd.tar.gz nextcloud-server-d34cafc58c699f258b3ec80ff10e3b6e8080cbdd.zip |
Update core/Command/Db/Migrations/MigrateCommand.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/Db')
-rw-r--r-- | core/Command/Db/Migrations/MigrateCommand.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/Command/Db/Migrations/MigrateCommand.php b/core/Command/Db/Migrations/MigrateCommand.php index b438da00541..3e11b32665a 100644 --- a/core/Command/Db/Migrations/MigrateCommand.php +++ b/core/Command/Db/Migrations/MigrateCommand.php @@ -33,7 +33,9 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class MigrateCommand extends Command implements CompletionAwareInterface { - public function __construct(private Connection $connection) { + public function __construct( + private Connection $connection, + ) { parent::__construct(); } |