-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Table Style #40694
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
Thank you. Is this a duplicate of #40634? |
Okey, thank you for checking. |
Hey, thanks for your report! |
Friendly reminder that this issue exists. If I don't hear anything I'll close this. |
Hey, I didn't hear anything so I'm going to close it. Feel free to comment if this is still relevant, I can always reopen! |
Uh oh!
There was an error while loading. Please reload this page.
Symfony version(s) affected: 5.2
Description
I'm writing a console app using Symfony Console Component. I'm trying to interact with questions and tables. I want to ask a question and then output a table and then ask another and output another table. All of that happens in the same command class. This is my code:
When I'm trying to implement my code, the question works well but when I output the table it shows in a weird way like this:
If I echo the table before the question it works:
Does anyone have any clue how I can solve this?
This is the complete code:
P.S. The IDE encoding is UTF-8. I figured out that the problem is with "$table->setStyle( 'box' );", if I remove this line everything goes normal. If I add this line and change the argument to 'default', everything goes normal too. So, I'm trying to figure out why this line breaks the style.
The text was updated successfully, but these errors were encountered: