Skip to content

Commit

Permalink
CS
Browse files Browse the repository at this point in the history
  • Loading branch information
bytehead committed Mar 12, 2024
1 parent 13dc311 commit edfd838
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core-bundle/src/Command/DebugFragmentsCommand.php
Expand Up @@ -29,7 +29,7 @@ class DebugFragmentsCommand extends Command
{
public function __construct(
private readonly FragmentRegistry $registry,
private readonly ContainerInterface $container
private readonly ContainerInterface $container,
) {
parent::__construct();
}
Expand All @@ -51,7 +51,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int

$rows[] = [
$identifier,
is_string($controller) ? $controller : get_class($controller),
\is_string($controller) ? $controller : $controller::class,
$config->getRenderer(),
$this->generateArray($config->getOptions()),
$this->generateArray($attributes),
Expand Down

0 comments on commit edfd838

Please sign in to comment.