Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The recent #1445 introduced a bug (as raised here)
This check should be done only if the user answer "YES" to the question.
if ( !$input->getOption('broadcast') && class_exists(Broadcast::class) && !class_exists($this->generator->createClassNameDetails($entityClassName, 'Entity\\')->getFullName()) ) { // Mercure is needed if (!class_exists(MercureExtension::class)) { throw new RuntimeCommandException('Please run "composer require symfony/mercure". It is needed to broadcast entities.'); } $description = $command->getDefinition()->getOption('broadcast')->getDescription(); $question = new ConfirmationQuestion($description, false); $isBroadcast = $io->askQuestion($question); $input->setOption('broadcast', $isBroadcast); }
The text was updated successfully, but these errors were encountered:
Fixed there, sorry 😮💨
Sorry, something went wrong.
No branches or pull requests
The recent #1445 introduced a bug (as raised here)
This check should be done only if the user answer "YES" to the question.
The text was updated successfully, but these errors were encountered: