Skip to content

Commit be5a543

Browse files
committed
Fix boolean expression
1 parent 23b42a8 commit be5a543

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DependencyInjection/AjgarlagPsrHttpMessageExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function prepend(ContainerBuilder $container)
3636
return;
3737
}
3838

39-
if (!isset($bundles['SensioFrameworkExtraBundle'])) {
39+
if (isset($bundles['SensioFrameworkExtraBundle'])) {
4040
$configs = $container->getExtensionConfig('sensio_framework_extra');
4141
$config = $this->processConfiguration(new SensioFrameworkExtraConfiguration(), $configs);
4242
$sensioPsr7Enabled = isset($config['psr_message']['enabled']) && $config['psr_message']['enabled'];

0 commit comments

Comments
 (0)