aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CommentBundle/DependencyInjection
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CommentBundle/DependencyInjection')
-rw-r--r--src/Wallabag/CommentBundle/DependencyInjection/Configuration.php20
-rw-r--r--src/Wallabag/CommentBundle/DependencyInjection/WallabagCommentExtension.php18
2 files changed, 0 insertions, 38 deletions
diff --git a/src/Wallabag/CommentBundle/DependencyInjection/Configuration.php b/src/Wallabag/CommentBundle/DependencyInjection/Configuration.php
deleted file mode 100644
index bc8d0615..00000000
--- a/src/Wallabag/CommentBundle/DependencyInjection/Configuration.php
+++ /dev/null
@@ -1,20 +0,0 @@
1<?php
2
3namespace Wallabag\CommentBundle\DependencyInjection;
4
5use Symfony\Component\Config\Definition\Builder\TreeBuilder;
6use Symfony\Component\Config\Definition\ConfigurationInterface;
7
8class Configuration implements ConfigurationInterface
9{
10 /**
11 * {@inheritdoc}
12 */
13 public function getConfigTreeBuilder()
14 {
15 $treeBuilder = new TreeBuilder();
16 $rootNode = $treeBuilder->root('wallabag_comment');
17
18 return $treeBuilder;
19 }
20}
diff --git a/src/Wallabag/CommentBundle/DependencyInjection/WallabagCommentExtension.php b/src/Wallabag/CommentBundle/DependencyInjection/WallabagCommentExtension.php
deleted file mode 100644
index 6b05fa00..00000000
--- a/src/Wallabag/CommentBundle/DependencyInjection/WallabagCommentExtension.php
+++ /dev/null
@@ -1,18 +0,0 @@
1<?php
2
3namespace Wallabag\CommentBundle\DependencyInjection;
4
5use Symfony\Component\DependencyInjection\ContainerBuilder;
6use Symfony\Component\HttpKernel\DependencyInjection\Extension;
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);
17 }
18}