@@ -212,7 +212,7 @@ protected function describeContainerServices(ContainerBuilder $builder, array $o
212
212
foreach ($ definition ->getTag ($ showTag ) as $ key => $ tag ) {
213
213
$ tagValues = array ();
214
214
foreach ($ tagsNames as $ tagName ) {
215
- $ tagValues [] = isset ($ tag [$ tagName ]) ? $ tag [$ tagName ] : "" ;
215
+ $ tagValues [] = isset ($ tag [$ tagName ]) ? $ tag [$ tagName ] : '' ;
216
216
}
217
217
if (0 === $ key ) {
218
218
$ table ->addRow (array_merge (array ($ serviceId ), $ tagValues , array ($ definition ->getClass ())));
@@ -225,10 +225,10 @@ protected function describeContainerServices(ContainerBuilder $builder, array $o
225
225
}
226
226
} elseif ($ definition instanceof Alias) {
227
227
$ alias = $ definition ;
228
- $ table ->addRow (array_merge (array ($ serviceId , sprintf ('alias for "%s" ' , $ alias )), $ tagsCount ? array_fill (0 , $ tagsCount , "" ) : array ()));
228
+ $ table ->addRow (array_merge (array ($ serviceId , sprintf ('alias for "%s" ' , $ alias )), $ tagsCount ? array_fill (0 , $ tagsCount , '' ) : array ()));
229
229
} else {
230
230
// we have no information (happens with "service_container")
231
- $ table ->addRow (array_merge (array ($ serviceId , get_class ($ definition )), $ tagsCount ? array_fill (0 , $ tagsCount , "" ) : array ()));
231
+ $ table ->addRow (array_merge (array ($ serviceId , get_class ($ definition )), $ tagsCount ? array_fill (0 , $ tagsCount , '' ) : array ()));
232
232
}
233
233
}
234
234
@@ -245,7 +245,7 @@ protected function describeContainerDefinition(Definition $definition, array $op
245
245
: array ();
246
246
247
247
$ description [] = sprintf ('<comment>Service Id</comment> %s ' , isset ($ options ['id ' ]) ? $ options ['id ' ] : '- ' );
248
- $ description [] = sprintf ('<comment>Class</comment> %s ' , $ definition ->getClass () ?: " - " );
248
+ $ description [] = sprintf ('<comment>Class</comment> %s ' , $ definition ->getClass () ?: ' - ' );
249
249
250
250
$ tags = $ definition ->getTags ();
251
251
if (count ($ tags )) {
0 commit comments