Skip to content

Commit 450a844

Browse files
Fail fast if the old tag name is used
Tag name was unfortunately changed in 1.0.23 without tagging a new major version
1 parent ce78489 commit 450a844

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

DependencyInjection/Compiler/CollectFilterPass.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,9 @@ public function process(ContainerBuilder $container)
2424
new Reference($id)
2525
));
2626
}
27+
28+
if ($container->findTaggedServiceIds('webfactory.integration.filter')) {
29+
throw new \RuntimeException("The webfactory.integration.filter tag has been renamed to webfactory_legacy_integration.filter already back 1.0.23. Please update your DIC configuration, and sorry for the hassle.");
30+
}
2731
}
2832
}

0 commit comments

Comments
 (0)