-
Notifications
You must be signed in to change notification settings - Fork 9.4k
[Issue] Fix table render of DiInfoCommand #38820
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
Comments
Hi @engcom-November. Thank you for working on this issue.
|
Hello @jissereitsma, Thank you for the report and collaboration! Verified this on 2.4-develop with php 8.3.
This is due to the parameter being passed to Note: There is a render function being passed to Hence confirming the issue. Thank you. |
✅ Jira issue https://jira.corp.adobe.com/browse/AC-12120 is successfully created for this GitHub issue. |
✅ Confirmed by @engcom-November. Thank you for verifying the issue. |
This one can be closed as it duplicates #38740 |
This issue is automatically created based on existing pull request: #38813: Fix table render of DiInfoCommand
When running the DiInfoCommand under Magento 2.4.7 and PHP 8.3, line 96 mentions to pass the output of
$paramsTable->render()
to the$output
. However, because of typing issues, this causes a Fatal Error. According the Symfony docs (since a long time) therender()
method is already giving output, so the output should not be passed to$output->writeln()
anyway. This PR fixes things.The text was updated successfully, but these errors were encountered: