Skip to content

Commit

Permalink
fix: Correct display table name in dropDatabase in console
Browse files Browse the repository at this point in the history
  • Loading branch information
parsgit committed Nov 21, 2023
1 parent c4c348a commit 183ff91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DbAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private function dropDatabase($input, $output){
$name = $input->getArgument('name');

$helper = $this->getHelper('question');
$question = new ConfirmationQuestion('<question>Are you sure you want to delete the users database?(Type yes to continue):</question>', false);
$question = new ConfirmationQuestion('<question>Are you sure you want to delete the "<error>'.$name.'</error>" database?(Type yes to continue):</question>', false);
if (!$helper->ask($input, $output, $question)) {
return Command::SUCCESS;
}
Expand Down

0 comments on commit 183ff91

Please sign in to comment.