Skip to content

Commit

Permalink
CS
Browse files Browse the repository at this point in the history
  • Loading branch information
chrishemmings committed Dec 11, 2023
1 parent 7aa92bb commit 60320ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DependencyInjection/FOSElasticaExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ private function loadIndexes(array $indexes, ContainerBuilder $container): void
$container->registerAliasForArgument(
$indexId,
Index::class,
sprintf('%s.%s',$name,'index')
sprintf('%s.%s', $name, 'index')
)->setPublic(true);

if (isset($index['client'])) {
Expand Down Expand Up @@ -662,7 +662,7 @@ private function loadTypeFinder(array $typeConfig, ContainerBuilder $container,
$container->registerAliasForArgument(
$finderId,
TransformedFinder::class,
sprintf('%s.%s',$indexName,'finder')
sprintf('%s.%s', $indexName, 'finder')
)->setPublic(true);
}

Expand Down

0 comments on commit 60320ff

Please sign in to comment.