Browse Source

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>
pull/38764/head
Faraz Samapoor 3 years ago
committed by Louis
parent
commit
d34cafc58c
  1. 4
      core/Command/Db/Migrations/MigrateCommand.php

4
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();
}

Loading…
Cancel
Save