diff options
Diffstat (limited to 'src/WallabagBundle/DependencyInjection/WallabagExtension.php')
-rw-r--r-- | src/WallabagBundle/DependencyInjection/WallabagExtension.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/WallabagBundle/DependencyInjection/WallabagExtension.php b/src/WallabagBundle/DependencyInjection/WallabagExtension.php deleted file mode 100644 index cfdb21fc..00000000 --- a/src/WallabagBundle/DependencyInjection/WallabagExtension.php +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace WallabagBundle\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 WallabagExtension 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 'wallabag'; | ||
21 | } | ||
22 | } | ||