diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-31 15:36:04 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-31 15:36:04 +0100 |
commit | 1990517b2263a080946853ed697a6d687262ae80 (patch) | |
tree | 8f676a051a25c65bf2130235e6b30e3f53030154 /src/Acme/DemoBundle/DependencyInjection | |
parent | c3235553ddc2bb5965f6fe00e750cfe4aac9ccdf (diff) | |
download | wallabag-1990517b2263a080946853ed697a6d687262ae80.tar.gz wallabag-1990517b2263a080946853ed697a6d687262ae80.tar.zst wallabag-1990517b2263a080946853ed697a6d687262ae80.zip |
remove Acme and AppBundle
Diffstat (limited to 'src/Acme/DemoBundle/DependencyInjection')
-rw-r--r-- | src/Acme/DemoBundle/DependencyInjection/AcmeDemoExtension.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/Acme/DemoBundle/DependencyInjection/AcmeDemoExtension.php b/src/Acme/DemoBundle/DependencyInjection/AcmeDemoExtension.php deleted file mode 100644 index 6dfcc822..00000000 --- a/src/Acme/DemoBundle/DependencyInjection/AcmeDemoExtension.php +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Acme\DemoBundle\DependencyInjection; | ||
4 | |||
5 | use Symfony\Component\DependencyInjection\ContainerBuilder; | ||
6 | use Symfony\Component\DependencyInjection\Loader\XmlFileLoader; | ||
7 | use Symfony\Component\HttpKernel\DependencyInjection\Extension; | ||
8 | use Symfony\Component\Config\FileLocator; | ||
9 | |||
10 | class AcmeDemoExtension extends Extension | ||
11 | { | ||
12 | public function load(array $configs, ContainerBuilder $container) | ||
13 | { | ||
14 | $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); | ||
15 | $loader->load('services.xml'); | ||
16 | } | ||
17 | |||
18 | public function getAlias() | ||
19 | { | ||
20 | return 'acme_demo'; | ||
21 | } | ||
22 | } | ||