mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
16 lines
425 B
PHP
16 lines
425 B
PHP
<?php
|
|
|
|
namespace Chill\CustomFieldsBundle;
|
|
|
|
use Symfony\Component\HttpKernel\Bundle\Bundle;
|
|
use Chill\CustomFieldsBundle\DependencyInjection\CustomFieldCompilerPass;
|
|
|
|
class ChillCustomFieldsBundle extends Bundle
|
|
{
|
|
public function build(\Symfony\Component\DependencyInjection\ContainerBuilder $container)
|
|
{
|
|
parent::build($container);
|
|
$container->addCompilerPass(new CustomFieldCompilerPass());
|
|
}
|
|
}
|