added empty configuration definition

This commit is contained in:
Christian Kerl 2011-03-26 16:43:41 +01:00
parent d4c3e15f6f
commit 0f29e64f74
1 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,40 @@
<?php
/*
* This file is part of the WebServiceBundle.
*
* (c) Christian Kerl <christian-kerl@web.de>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Bundle\WebServiceBundle\DependencyInjection;
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
/**
* WebServiceExtension configuration structure.
*
* @author Christian Kerl <christian-kerl@web.de>
*/
class Configuration
{
/**
* Generates the configuration tree.
*
* @return \Symfony\Component\Config\Definition\ArrayNode The config tree
*/
public function getConfigTree()
{
$treeBuilder = new TreeBuilder();
$rootNode = $treeBuilder->root('webservice');
$rootNode
->children()
->end()
;
return $treeBuilder->buildTree();
}
}