Skip to content

Commit

Permalink
Fix hardcoded hotPathTagName
Browse files Browse the repository at this point in the history
  • Loading branch information
jderusse committed Mar 29, 2019
1 parent 755d481 commit 67fb8ef
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -106,7 +106,7 @@ public function process(ContainerBuilder $container)
$definition->addMethodCall('addListener', $args);

if (isset($this->hotPathEvents[$args[0]])) {
$container->getDefinition($id)->addTag('container.hot_path');
$container->getDefinition($id)->addTag($this->hotPathTagName);
}
}
$extractingDispatcher->listeners = [];
Expand Down

0 comments on commit 67fb8ef

Please sign in to comment.