mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 23:59:26 +03:00
27 lines
640 B
PHP
27 lines
640 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* This file is part of the ApiDocBundle package.
|
||
|
*
|
||
|
* (c) EXSyst
|
||
|
*
|
||
|
* For the full copyright and license information, please view the LICENSE
|
||
|
* file that was distributed with this source code.
|
||
|
*/
|
||
|
|
||
|
namespace EXSyst\Bundle\ApiDocBundle\DependencyInjection;
|
||
|
|
||
|
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
|
||
|
use Symfony\Component\Config\Definition\ConfigurationInterface;
|
||
|
|
||
|
class Configuration implements ConfigurationInterface
|
||
|
{
|
||
|
public function getConfigTreeBuilder()
|
||
|
{
|
||
|
$treeBuilder = new TreeBuilder();
|
||
|
$rootNode = $treeBuilder->root('exsyst_api_doc');
|
||
|
|
||
|
return $treeBuilder;
|
||
|
}
|
||
|
}
|