aboutsummaryrefslogtreecommitdiff
path: root/src/NXP/RutilsBundle/DependencyInjection/nxpRutilsExtension.php
diff options
context:
space:
mode:
authorAlexander Kiryuhin <frei@neonxp.info>2014-02-14 01:36:23 +0400
committerAlexander Kiryuhin <frei@neonxp.info>2014-02-14 01:36:23 +0400
commit996e24bb44feed349a3f0ad04c0e48c15e7f5190 (patch)
treefcd7e515039cc2ce03020b37a71903de16596038 /src/NXP/RutilsBundle/DependencyInjection/nxpRutilsExtension.php
parentf6631ff901ce12d70db09c8047bff9c2f8aa0067 (diff)
~ maybe last fixHEAD1.0.0master
Diffstat (limited to 'src/NXP/RutilsBundle/DependencyInjection/nxpRutilsExtension.php')
-rw-r--r--src/NXP/RutilsBundle/DependencyInjection/nxpRutilsExtension.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/NXP/RutilsBundle/DependencyInjection/nxpRutilsExtension.php b/src/NXP/RutilsBundle/DependencyInjection/nxpRutilsExtension.php
deleted file mode 100644
index 2b2a39b..0000000
--- a/src/NXP/RutilsBundle/DependencyInjection/nxpRutilsExtension.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?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');
- }
-}