Start on config parser
This commit is contained in:
parent
c7544bc77a
commit
28b21b8e12
20
DependencyInjection/Configuration.php
Normal file
20
DependencyInjection/Configuration.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Ardent\ParameterBundle\DependencyInjection;
|
||||
|
||||
|
||||
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
|
||||
use Symfony\Component\Config\Definition\ConfigurationInterface;
|
||||
|
||||
class Configuration implements ConfigurationInterface
|
||||
{
|
||||
public function getConfigTreeBuilder()
|
||||
{
|
||||
$treeBuilder = new TreeBuilder('parameter_bundle');
|
||||
|
||||
$treeBuilder->getRootNode()
|
||||
->children()
|
||||
->end();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user