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

16 lines
418 B
PHP

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