]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CommentBundle/DependencyInjection/WallabagCommentExtension.php
Move annotatorjs to the bottom of the body
[github/wallabag/wallabag.git] / src / Wallabag / CommentBundle / DependencyInjection / WallabagCommentExtension.php
CommitLineData
f38e03dc
TC
1<?php
2
3namespace Wallabag\CommentBundle\DependencyInjection;
4
5use Symfony\Component\DependencyInjection\ContainerBuilder;
f38e03dc 6use Symfony\Component\HttpKernel\DependencyInjection\Extension;
f38e03dc
TC
7
8class 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);
f38e03dc
TC
17 }
18}