From c57a79098da055c2990737c1092704d8a1941239 Mon Sep 17 00:00:00 2001 From: Toni Rudolf Date: Mon, 7 Aug 2017 11:36:42 +0200 Subject: [PATCH] continue if exclusive is set to false --- .../Compiler/BuildExclusiveCommandsExtensionPass.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/enqueue-bundle/DependencyInjection/Compiler/BuildExclusiveCommandsExtensionPass.php b/pkg/enqueue-bundle/DependencyInjection/Compiler/BuildExclusiveCommandsExtensionPass.php index f01468f0d..978341ab7 100644 --- a/pkg/enqueue-bundle/DependencyInjection/Compiler/BuildExclusiveCommandsExtensionPass.php +++ b/pkg/enqueue-bundle/DependencyInjection/Compiler/BuildExclusiveCommandsExtensionPass.php @@ -32,7 +32,7 @@ public function process(ContainerBuilder $container) continue; } - if (false == isset($subscription['exclusive'])) { + if (false == isset($subscription['exclusive']) || $subscription['exclusive'] === false) { continue; }