]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/AnnotationBundle/DependencyInjection/WallabagAnnotationExtension.php
Rename CommentBundle with AnnotationBundle
[github/wallabag/wallabag.git] / src / Wallabag / AnnotationBundle / DependencyInjection / WallabagAnnotationExtension.php
CommitLineData
f38e03dc
TC
1<?php
2
4dc87223 3namespace Wallabag\AnnotationBundle\DependencyInjection;
f38e03dc
TC
4
5use Symfony\Component\DependencyInjection\ContainerBuilder;
f38e03dc 6use Symfony\Component\HttpKernel\DependencyInjection\Extension;
f38e03dc 7
4dc87223 8class WallabagAnnotationExtension extends Extension
f38e03dc
TC
9{
10 /**
11 * {@inheritdoc}
12 */
13 public function load(array $configs, ContainerBuilder $container)
14 {
15 $configuration = new Configuration();
16 $config = $this->processConfiguration($configuration, $configs);
f38e03dc
TC
17 }
18}