-
Notifications
You must be signed in to change notification settings - Fork 3
Symfony 6 and PHP 8.1+ #39
New issue
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
base: develop
Are you sure you want to change the base?
Conversation
…turn types everywhere possible, fix/optimize legacy code blocks
…ix deprecated database platform check.
Status: This PR looks good to me at this point. Awaiting for the other related projects, as discussed elsewhere. |
@@ -75,7 +69,8 @@ public function execute(InputInterface $input, OutputInterface $output) | |||
*/ | |||
if (!in_array('queue_task', $dbal->getSchemaManager()->listTableNames())) { | |||
$output->writeln("<error>Couldn't find the queue tasks table in the database. This is expected, if the bundle is used for the first time. Otherwise it's a critical error you should investigate.</error>"); | |||
return; | |||
|
|||
return static::FAILURE; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs changing to return static::SUCCESS
or will potentially fail builds. This is not strictly a failure as the output message suggests, so will also need to change <error>
to <comment>
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
…he queue tasks table in the database." as SUCCESS to prevent build fails
This PR add support for Symfony 6+ and drops support for previous versions