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
bug #44915 [Console] Fix compact table style to avoid outputting a leading space (Seldaek)
This PR was merged into the 4.4 branch.
Discussion
----------
[Console] Fix compact table style to avoid outputting a leading space
| Q | A
| ------------- | ---
| Branch? | 4.4
| Bug fix? | yes
| New feature? | no
| Deprecations? | no
| Tickets | Fix #... <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead -->
| License | MIT
| Doc PR | symfony/symfony-docs#... <!-- required for new features -->
This changes the `compact` output from:
```
a b \n
foo bar \n
```
To:
```
a b \n
foo bar \n
```
Note the only difference is the leading space which is not there anymore.
IMO this is a much better default, but I do understand it changes something which has been as it is for ages, which may be considered a BC break more than a bugfix.
Commits
-------
5ffedf5 [Console] Fix compact table style to avoid outputting a leading space
0 commit comments