16 lines
418 B
PHP
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());
|
|
}
|
|
}
|