$this->
write("Container parameters\n====================\n"
);
foreach ($this->
sortParameters($parameters) as $key =>
$value) { $this->
write(sprintf("\n- `%s`: `%s`",
$key,
$this->
formatParameter($value)));
} } protected function describeContainerTags(ContainerBuilder
$container, array
$options =
[]): void
{ $showHidden =
isset($options['show_hidden'
]) &&
$options['show_hidden'
];
$this->
write("Container tags\n=============="
);
foreach ($this->
findDefinitionsByTag($container,
$showHidden) as $tag =>
$definitions) { $this->
write("\n\n".
$tag."\n".
str_repeat('-', \
strlen($tag)));
foreach ($definitions as $serviceId =>
$definition) { $this->
write("\n\n"
);
$this->
describeContainerDefinition($definition,
['omit_tags' => true, 'id' =>
$serviceId],
$container);
} } } protected function describeContainerService(object
$service, array
$options =
[], ContainerBuilder
$container = null
): void
{ if (!
isset($options['id'
])) {