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
The width of the columns are automatically set using the width of their contents by default. You can change this behavior via :method:`Symfony\\Component\\Console\\Helper\\Table::setColumnWidths`::
69
+
The width of the columns are automatically set using the width of their contents
70
+
by default. You can control the minimum widths via :method:`Symfony\\Component\\Console\\Helper\\Table::setColumnWidths`::
70
71
71
-
// Sets the left column to 10 characters, the middle to 0, and the right to 30 characters.
72
-
// The left two columns will effectively be 13 and 24 characters, as the columns' content don't fit within the set values.
72
+
// the widths will expand to be bigger if necessary
73
+
// here, the left two columns will be 13 & 24 characters to fit their content
0 commit comments