From: Faraz Samapoor Date: Tue, 13 Jun 2023 07:14:12 +0000 (+0330) Subject: Update core/Command/Db/Migrations/MigrateCommand.php X-Git-Tag: v28.0.0beta1~871^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d34cafc58c699f258b3ec80ff10e3b6e8080cbdd;p=nextcloud-server.git 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 --- 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(); }