From aba323736255d84e7163f21c4b600e12e3ec7796 Mon Sep 17 00:00:00 2001 From: Jesse Rushlow <40327885+jrushlow@users.noreply.github.com> Date: Sun, 19 May 2024 00:41:31 -0400 Subject: [PATCH] one time ask --- src/Maker/MakeEntity.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Maker/MakeEntity.php b/src/Maker/MakeEntity.php index a1c100f73..dda9cb9e3 100644 --- a/src/Maker/MakeEntity.php +++ b/src/Maker/MakeEntity.php @@ -130,7 +130,7 @@ public function interact(InputInterface $input, ConsoleStyle $io, Command $comma $entityClassName ??= $io->askQuestion($question); while ($dangerous = $this->verifyEntityName($entityClassName)) { - if ($io->confirm(sprintf('The %s character is non-ASCII, which are potentially problematic with some database. It is recommended to use only ASCII characters in entity names. Would you keep entered name ?', $dangerous[0]), false)) { + if ($io->confirm(sprintf('"%s" contains one or more non-ASCII characters, which are potentially problematic with some database. It is recommended to use only ASCII characters for entity names. Continue anyway?', $entityClassName), false)) { break; }