Files
kupshop/bundles/KupShop/GTMBundle/GTMBundle.php
2025-08-02 16:30:27 +02:00

16 lines
360 B
PHP

<?php
namespace KupShop\GTMBundle;
use KupShop\GTMBundle\DependencyInjection\Compiler\GTMPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class GTMBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
$container->addCompilerPass(new GTMPass());
}
}