aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/Wallabag/CommentBundle/DependencyInjection/WallabagCommentExtension.php
blob: 6b05fa0015b3fbee9e0553b97f59119b9f898e5e (plain) (tree)
1
2
3
4
5
6




                                                           
                                                               









                                                                        

     
<?php

namespace Wallabag\CommentBundle\DependencyInjection;

use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;

class WallabagCommentExtension extends Extension
{
    /**
     * {@inheritdoc}
     */
    public function load(array $configs, ContainerBuilder $container)
    {
        $configuration = new Configuration();
        $config = $this->processConfiguration($configuration, $configs);
    }
}