diff options
author | Alexander Kiryuhin <frei@neonxp.info> | 2014-02-14 00:17:43 +0400 |
---|---|---|
committer | Alexander Kiryuhin <frei@neonxp.info> | 2014-02-14 00:17:43 +0400 |
commit | ea9ef1c67bef81cdffde7466b55f2e2cf5c6303b (patch) | |
tree | fb5e102132a4a4956b47679089f3c33be611bac6 /DependencyInjection/nxpRutilsExtension.php |
+ Initial commit
Diffstat (limited to 'DependencyInjection/nxpRutilsExtension.php')
-rw-r--r-- | DependencyInjection/nxpRutilsExtension.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/DependencyInjection/nxpRutilsExtension.php b/DependencyInjection/nxpRutilsExtension.php new file mode 100644 index 0000000..2b2a39b --- /dev/null +++ b/DependencyInjection/nxpRutilsExtension.php @@ -0,0 +1,28 @@ +<?php + +namespace nxp\RutilsBundle\DependencyInjection; + +use Symfony\Component\DependencyInjection\ContainerBuilder; +use Symfony\Component\Config\FileLocator; +use Symfony\Component\HttpKernel\DependencyInjection\Extension; +use Symfony\Component\DependencyInjection\Loader; + +/** + * This is the class that loads and manages your bundle configuration + * + * To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/extension.html} + */ +class nxpRutilsExtension extends Extension +{ + /** + * {@inheritDoc} + */ + public function load(array $configs, ContainerBuilder $container) + { + $configuration = new Configuration(); + $config = $this->processConfiguration($configuration, $configs); + + $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); + $loader->load('services.yml'); + } +} |