3 namespace Rapsys\PackBundle\DependencyInjection
; 
   5 use Symfony\Component\DependencyInjection\ContainerBuilder
; 
   6 use Symfony\Component\Config\FileLocator
; 
   7 use Symfony\Component\HttpKernel\DependencyInjection\Extension
; 
   8 use Symfony\Component\DependencyInjection\Loader
; 
  11  * This is the class that loads and manages your bundle configuration. 
  13  * @link http://symfony.com/doc/current/cookbook/bundles/extension.html 
  15 class RapsysPackExtension 
extends Extension
 
  20     public function load(array $configs, ContainerBuilder 
$container) 
  22         $configuration = new Configuration(); 
  23         $config = $this->processConfiguration($configuration, $configs); 
  25         $loader = new Loader\
YamlFileLoader($container, new FileLocator(__DIR__
.'/../Resources/config')); 
  26         $loader->load('services.yml');