Skip to content

Commit 091f478

Browse files
fix: fix config declaration order
1 parent 165016a commit 091f478

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Command/Doctrine/AbstractNestingDoctrineSchemaCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ public function __construct(
2525

2626
protected function configure(): void
2727
{
28+
parent::configure();
29+
2830
foreach ($this->parentCommand->getDefinition()->getArguments() as $argument) {
2931
$this->addArgument(
3032
$argument->getName(),
@@ -43,8 +45,6 @@ protected function configure(): void
4345
$option->getDefault(),
4446
);
4547
}
46-
47-
parent::configure();
4848
}
4949

5050
protected function runCommand(string $commandName, InputInterface $input, OutputInterface $output): int

0 commit comments

Comments
 (0)