@trigger_error("TaggedServices component has been deprecated since v1.1 and will be deleted in v2.0, use symfony tag injection instead \"!tagged tag_name\"", E_USER_DEPRECATED);
15
16
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
17
use Symfony\Component\DependencyInjection\ContainerBuilder;
18
19
/**
20
* @deprecated since v1.1 and will be deleted in v2.0, use symfony tag injection instead "!tagged tag_name"
21
*/
22
class TaggedServicesCompilerPass implements CompilerPassInterface
23
{
24
/**
25
* {@inheritdoc}
26
*
27
* @throws \InvalidArgumentException
28
*/
29
public function process(ContainerBuilder $container)
30
{
31
if (!$container->hasDefinition(TaggedServices::class)) {