forked from wallabag/wallabag
19 lines
478 B
PHP
19 lines
478 B
PHP
|
|
<?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);
|
||
|
|
}
|
||
|
|
}
|