mirror of
https://github.com/wallabag/wallabag.git
synced 2025-05-24 17:21:08 +00:00
20 lines
476 B
PHP
20 lines
476 B
PHP
<?php
|
|
|
|
namespace Wallabag\AnnotationBundle\DependencyInjection;
|
|
|
|
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
|
|
use Symfony\Component\Config\Definition\ConfigurationInterface;
|
|
|
|
class Configuration implements ConfigurationInterface
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getConfigTreeBuilder()
|
|
{
|
|
$treeBuilder = new TreeBuilder();
|
|
$rootNode = $treeBuilder->root('wallabag_annotation');
|
|
|
|
return $treeBuilder;
|
|
}
|
|
}
|