chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace Mautic\EmailBundle\DependencyInjection\Compiler;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Reference;
class StatHelperPass implements CompilerPassInterface
{
public function process(ContainerBuilder $container): void
{
$definition = $container->getDefinition('mautic.email.stats.helper_container');
$taggedServices = $container->findTaggedServiceIds('mautic.email_stat_helper');
foreach ($taggedServices as $id => $tags) {
$definition->addMethodCall('addHelper', [
new Reference($id),
]);
}
}
}