]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CommentBundle/DependencyInjection/WallabagCommentExtension.php
Add annotator in baggy theme
[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;
6use Symfony\Component\Config\FileLocator;
7use Symfony\Component\HttpKernel\DependencyInjection\Extension;
8use Symfony\Component\DependencyInjection\Loader;
9
10class WallabagCommentExtension extends Extension
11{
12 /**
13 * {@inheritdoc}
14 */
15 public function load(array $configs, ContainerBuilder $container)
16 {
17 $configuration = new Configuration();
18 $config = $this->processConfiguration($configuration, $configs);
f38e03dc
TC
19 }
20}