From b3bd0c629d47269138b28dd8e1c6301837ce5464 Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Sat, 17 Aug 2024 09:09:39 +0200 Subject: [PATCH] [FrameworkBundle] Fix comment --- .../FrameworkBundle/DependencyInjection/FrameworkExtension.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php index b773c9860849d..8f659f657d06b 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php @@ -550,7 +550,7 @@ public function load(array $configs, ContainerBuilder $container): void if ($this->readConfigEnabled('webhook', $container, $config['webhook'])) { $this->registerWebhookConfiguration($config['webhook'], $container, $loader, $this->readConfigEnabled('serializer', $container, $config['serializer'])); - // If Webhook is installed but the HttpClient or Serializer components are not available, we should throw an error + // If Webhook is installed but the HttpClient component is not available, we should throw an error if (!$this->readConfigEnabled('http_client', $container, $config['http_client'])) { $container->getDefinition('webhook.transport') ->setArguments([])