@@ -23,6 +23,7 @@ protected function describeRouteCollection(RouteCollection $routes, array $optio
23
23
$ showControllers = isset ($ options ['show_controllers ' ]) && $ options ['show_controllers ' ];
24
24
$ headers = array ('Name ' , 'Method ' , 'Scheme ' , 'Host ' , 'Path ' );
25
25
$ table = new TableHelper ();
26
+ $ table ->setLayout (TableHelper::LAYOUT_COMPACT );
26
27
$ table ->setHeaders ($ showControllers ? array_merge ($ headers , array ('Controller ' )) : $ headers );
27
28
28
29
foreach ($ routes ->all () as $ name => $ route ) {
@@ -90,6 +91,7 @@ protected function describeRoute(Route $route, array $options = array())
90
91
protected function describeContainerParameters (ParameterBag $ parameters , array $ options = array ())
91
92
{
92
93
$ table = new TableHelper ();
94
+ $ table ->setLayout (TableHelper::LAYOUT_COMPACT );
93
95
$ table ->setHeaders (array ('Parameter ' , 'Value ' ));
94
96
95
97
foreach ($ this ->sortParameters ($ parameters ) as $ parameter => $ value ) {
@@ -190,6 +192,7 @@ protected function describeContainerServices(ContainerBuilder $builder, array $o
190
192
$ tagsNames = array_keys ($ maxTags );
191
193
192
194
$ table = new TableHelper ();
195
+ $ table ->setLayout (TableHelper::LAYOUT_COMPACT );
193
196
$ table ->setHeaders (array_merge (array ('Service ID ' ), $ tagsNames , array ('Scope ' , 'Class name ' )));
194
197
195
198
foreach ($ this ->sortServiceIds ($ serviceIds ) as $ serviceId ) {
0 commit comments