Update core/Command/Db/Migrations/StatusCommand.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 2023-06-13 10:43:59 +07:00 committed by Louis
parent b5cbba7fc1
commit f1a19a10fc
1 changed files with 3 additions and 1 deletions

@ -34,7 +34,9 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class StatusCommand extends Command implements CompletionAwareInterface {
public function __construct(private Connection $connection) {
public function __construct(
private Connection $connection,
) {
parent::__construct();
}