mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-23 16:13:50 +00:00
move bundle to root dir for inclusion in packagist refs #259
This commit is contained in:
15
ChillCustomFieldsBundle.php
Normal file
15
ChillCustomFieldsBundle.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?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());
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user