33
33
*/
34
34
class TextDescriptor extends Descriptor
35
35
{
36
- /**
37
- * {@inheritdoc}
38
- */
39
36
protected function describeRouteCollection (RouteCollection $ routes , array $ options = [])
40
37
{
41
38
$ showControllers = isset ($ options ['show_controllers ' ]) && $ options ['show_controllers ' ];
@@ -72,9 +69,6 @@ protected function describeRouteCollection(RouteCollection $routes, array $optio
72
69
}
73
70
}
74
71
75
- /**
76
- * {@inheritdoc}
77
- */
78
72
protected function describeRoute (Route $ route , array $ options = [])
79
73
{
80
74
$ tableHeaders = ['Property ' , 'Value ' ];
@@ -100,9 +94,6 @@ protected function describeRoute(Route $route, array $options = [])
100
94
$ table ->render ();
101
95
}
102
96
103
- /**
104
- * {@inheritdoc}
105
- */
106
97
protected function describeContainerParameters (ParameterBag $ parameters , array $ options = [])
107
98
{
108
99
$ tableHeaders = ['Parameter ' , 'Value ' ];
@@ -116,9 +107,6 @@ protected function describeContainerParameters(ParameterBag $parameters, array $
116
107
$ options ['output ' ]->table ($ tableHeaders , $ tableRows );
117
108
}
118
109
119
- /**
120
- * {@inheritdoc}
121
- */
122
110
protected function describeContainerTags (ContainerBuilder $ builder , array $ options = [])
123
111
{
124
112
$ showPrivate = isset ($ options ['show_private ' ]) && $ options ['show_private ' ];
@@ -252,9 +240,6 @@ protected function describeContainerServices(ContainerBuilder $builder, array $o
252
240
$ options ['output ' ]->table ($ tableHeaders , $ tableRows );
253
241
}
254
242
255
- /**
256
- * {@inheritdoc}
257
- */
258
243
protected function describeContainerDefinition (Definition $ definition , array $ options = [])
259
244
{
260
245
if (isset ($ options ['id ' ])) {
@@ -358,9 +343,6 @@ protected function describeContainerDefinition(Definition $definition, array $op
358
343
$ options ['output ' ]->table ($ tableHeaders , $ tableRows );
359
344
}
360
345
361
- /**
362
- * {@inheritdoc}
363
- */
364
346
protected function describeContainerAlias (Alias $ alias , array $ options = [], ContainerBuilder $ builder = null )
365
347
{
366
348
$ options ['output ' ]->comment (sprintf ('This service is an alias for the service <info>%s</info> ' , (string ) $ alias ));
@@ -372,9 +354,6 @@ protected function describeContainerAlias(Alias $alias, array $options = [], Con
372
354
$ this ->describeContainerDefinition ($ builder ->getDefinition ((string ) $ alias ), array_merge ($ options , ['id ' => (string ) $ alias ]));
373
355
}
374
356
375
- /**
376
- * {@inheritdoc}
377
- */
378
357
protected function describeContainerParameter ($ parameter , array $ options = [])
379
358
{
380
359
$ options ['output ' ]->table (
0 commit comments