Symfony Console Table: how to center columns content?

1.3k Views Asked by At

Using Table of Symfony Console Component one can draw tables with rows and columns.

How to align to the center the content of the columns?

1

There are 1 best solutions below

0
On BEST ANSWER

In order to change the style of a Table, one should use the TableStyle class and its setPadType method passing STR_PAD_BOTH to it.

Example:

$table = new Table($output);

// set table contents
// ...

$tableStyle = new TableStyle();
$tableStyle->setPadType(STR_PAD_BOTH);

$table->setStyle($tableStyle)->render();