Skip to content

Commit

Permalink
fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
alexz707 committed Jun 24, 2024
1 parent 533d5c9 commit 6240149
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/DependencyInjection/PimcoreStudioBackendExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,10 @@ public function prepend(ContainerBuilder $container): void
if ($container->hasParameter('pimcore_studio_backend.mercure_settings.' . $key)) {
continue;
}
$container->setParameter('pimcore_studio_backend.mercure_settings.' . $key, $containerConfig['mercure_settings'][$key]);
$container->setParameter(
'pimcore_studio_backend.mercure_settings.' . $key,
$containerConfig['mercure_settings'][$key]
);
}
}

Expand Down

0 comments on commit 6240149

Please sign in to comment.