]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CommentBundle/DependencyInjection/WallabagCommentExtension.php
Move annotatorjs to the bottom of the body
[github/wallabag/wallabag.git] / src / Wallabag / CommentBundle / DependencyInjection / WallabagCommentExtension.php
1 <?php
2
3 namespace Wallabag\CommentBundle\DependencyInjection;
4
5 use Symfony\Component\DependencyInjection\ContainerBuilder;
6 use Symfony\Component\HttpKernel\DependencyInjection\Extension;
7
8 class WallabagCommentExtension extends Extension
9 {
10 /**
11 * {@inheritdoc}
12 */
13 public function load(array $configs, ContainerBuilder $container)
14 {
15 $configuration = new Configuration();
16 $config = $this->processConfiguration($configuration, $configs);
17 }
18 }