chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
raw
history blame contribute delete
782 Bytes
<?php
namespace Mautic\CoreBundle\DependencyInjection\Compiler;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Reference;
class UpdateStepPass implements CompilerPassInterface
{
public function process(ContainerBuilder $container): void
{
if (!$container->has('mautic.update.step_provider')) {
return;
}
$definition = $container->getDefinition('mautic.update.step_provider');
$taggedServices = $container->findTaggedServiceIds('mautic.update_step');
foreach ($taggedServices as $id => $tags) {
$definition->addMethodCall('addStep', [new Reference($id)]);
}
}
}