You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
while ($dangerous = $this->verifyEntityName($entityClassName)) {
133
+
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)) {
134
+
break;
135
+
}
135
136
136
-
while (!$this->verifyEntityName($entityClassName)) {
137
-
$io->error('An entity can only have ASCII letters');
0 commit comments