From cb420d8ead5b23cbefa7dc1f389332d7f52b4c48 Mon Sep 17 00:00:00 2001 From: Wouter de Jong Date: Thu, 4 May 2023 14:03:28 +0200 Subject: [PATCH] Fix syntax --- src/Command/ConfirmationTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/ConfirmationTrait.php b/src/Command/ConfirmationTrait.php index 730635f..005b278 100644 --- a/src/Command/ConfirmationTrait.php +++ b/src/Command/ConfirmationTrait.php @@ -22,7 +22,7 @@ protected function askConfirmationInProd(InputInterface $i, OutputInterface $o): } /** @var QuestionHelper $helper */ - $helper = $this->getHelper('question') + $helper = $this->getHelper('question'); return $helper->ask($i, $o, new ConfirmationQuestion('Are you sure you want to execute the migrations in production?', false)); }