mirror of
				https://gitlab.com/Chill-Projet/chill-bundles.git
				synced 2025-10-31 09:18:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			436 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			436 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Chill\MainBundle;
 | |
| 
 | |
| use Symfony\Component\HttpKernel\Bundle\Bundle;
 | |
| use Symfony\Component\DependencyInjection\ContainerBuilder;
 | |
| use Chill\MainBundle\DependencyInjection\SearchableServicesCompilerPass;
 | |
| 
 | |
| class ChillMainBundle extends Bundle
 | |
| {
 | |
|     public function build(ContainerBuilder $container)
 | |
|     {
 | |
|         parent::build($container);
 | |
|         $container->addCompilerPass(new SearchableServicesCompilerPass());
 | |
|     }
 | |
| }
 |